mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 18:56:48 +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
|
@ -1845,7 +1845,11 @@ static BOOL SHELL_execute(LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32 execfunc)
|
||||||
|
|
||||||
if (sei_tmp.fMask & unsupportedFlags)
|
if (sei_tmp.fMask & unsupportedFlags)
|
||||||
{
|
{
|
||||||
FIXME("flags ignored: 0x%08x\n", 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 */
|
/* process the IDList */
|
||||||
|
|
Loading…
Reference in a new issue