mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[SHELL32] Fix extra fixme (#1975)
This patch removes this line from the log: `fixme:(dll\win32\shell32\shlexec.cpp:1810) flags ignored: 0x00000004`
This commit is contained in:
parent
c8464e5717
commit
06eb8cda99
1 changed files with 5 additions and 1 deletions
|
@ -1844,9 +1844,13 @@ static BOOL SHELL_execute(LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32 execfunc)
|
|||
sei_tmp.lpDirectory = wszDir;
|
||||
|
||||
if (sei_tmp.fMask & unsupportedFlags)
|
||||
{
|
||||
// SEE_MASK_IDLIST is not in unsupportedFlags, but the check above passes because SEE_MASK_INVOKEIDLIST is in it
|
||||
if ((sei_tmp.fMask & unsupportedFlags) != SEE_MASK_IDLIST)
|
||||
{
|
||||
FIXME("flags ignored: 0x%08x\n", sei_tmp.fMask & unsupportedFlags);
|
||||
}
|
||||
}
|
||||
|
||||
/* process the IDList */
|
||||
if (sei_tmp.fMask & SEE_MASK_IDLIST)
|
||||
|
|
Loading…
Reference in a new issue