Commit 07090c24 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

ntoskrnl: Free allocated buffers on exit from wine_ntoskrnl_main_loop.

Avoids a warning of a memory leak in Valgrind.
parent b3c8124a
......@@ -257,7 +257,11 @@ NTSTATUS CDECL wine_ntoskrnl_main_loop( HANDLE stop_event )
break;
case STATUS_PENDING:
if (WaitForMultipleObjects( 2, handles, FALSE, INFINITE ) == WAIT_OBJECT_0)
{
HeapFree( GetProcessHeap(), 0, in_buff );
HeapFree( GetProcessHeap(), 0, out_buff );
return STATUS_SUCCESS;
}
break;
}
}
......
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