https://git.reactos.org/?p=reactos.git;a=commitdiff;h=06eb8cda99ed5a16b387e3c12e798de9a3954a39
commit 06eb8cda99ed5a16b387e3c12e798de9a3954a39 Author: Maxim Smirnov <[email protected]> AuthorDate: Thu Jan 2 15:35:32 2020 +0300 Commit: Hermès BÉLUSCA - MAÏTO <[email protected]> CommitDate: Thu Jan 2 13:35:32 2020 +0100 [SHELL32] Fix extra fixme (#1975) This patch removes this line from the log: `fixme:(dll\win32\shell32\shlexec.cpp:1810) flags ignored: 0x00000004` --- dll/win32/shell32/shlexec.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dll/win32/shell32/shlexec.cpp b/dll/win32/shell32/shlexec.cpp index 049426dd7da..099a964c93e 100644 --- a/dll/win32/shell32/shlexec.cpp +++ b/dll/win32/shell32/shlexec.cpp @@ -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 */
