dbghelp: Remove incorrect FIXME in SymEnumerateLoadedModules.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2021-11-22 15:20:27 +01:00 committed by Alexandre Julliard
parent 441838b7b2
commit 4cc7a3ba90

View file

@ -1246,7 +1246,6 @@ BOOL WINAPI EnumerateLoadedModulesW64(HANDLE hProcess,
if (!EnumProcessModules(hProcess, hMods, 256 * sizeof(hMods[0]), &sz))
{
/* hProcess should also be a valid process handle !! */
FIXME("If this happens, bump the number in mod\n");
HeapFree(GetProcessHeap(), 0, hMods);
return FALSE;
}