Commit 464b3552 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

kernel32: Display the parameter that caused a page fault in GlobalFree().

parent 1a81f4ff
...@@ -736,7 +736,7 @@ HGLOBAL WINAPI GlobalFree(HGLOBAL hmem) ...@@ -736,7 +736,7 @@ HGLOBAL WINAPI GlobalFree(HGLOBAL hmem)
} }
__EXCEPT_PAGE_FAULT __EXCEPT_PAGE_FAULT
{ {
ERR("page fault occurred ! Caused by bug ?\n"); ERR("(%p): Page fault occurred ! Caused by bug ?\n", hmem);
SetLastError( ERROR_INVALID_PARAMETER ); SetLastError( ERROR_INVALID_PARAMETER );
hreturned = hmem; hreturned = hmem;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment