[SHELL32] Fix extra fixme (#1975)
authorMaxim Smirnov <Maxim.like.Python@ya.ru>
Thu, 2 Jan 2020 12:35:32 +0000 (15:35 +0300)
committerHermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org>
Thu, 2 Jan 2020 12:35:32 +0000 (13:35 +0100)
This patch removes this line from the log:
`fixme:(dll\win32\shell32\shlexec.cpp:1810) flags ignored: 0x00000004`

dll/win32/shell32/shlexec.cpp

index 049426d..099a964 100644 (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 */