[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:
Maxim Smirnov 2020-01-02 15:35:32 +03:00 committed by Hermès BÉLUSCA - MAÏTO
parent c8464e5717
commit 06eb8cda99

View file

@ -1845,7 +1845,11 @@ static BOOL SHELL_execute(LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32 execfunc)
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 */