- Fixed hooking bug for Firefox, a plus, new SEH found a bug!

svn path=/trunk/; revision=37783
This commit is contained in:
James Tabor 2008-11-30 23:39:20 +00:00
parent 778dbb0862
commit 1af0b46120

View file

@ -507,13 +507,13 @@ co_IntCallHookProc(INT HookId,
} }
_SEH2_END; _SEH2_END;
IntCbFreeMemory(Argument);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
return 0; return 0;
} }
if (Argument) IntCbFreeMemory(Argument);
return Result; return Result;
} }