Commit 42be36f6 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

psapi: GetWsChanges() calls down to the wrong ntdll function. Found by sparse.

parent 9e4883e2
......@@ -561,7 +561,7 @@ BOOL WINAPI GetWsChanges( HANDLE process, PPSAPI_WS_WATCH_INFORMATION watchinfo,
TRACE( "(%p, %p, %d)\n", process, watchinfo, size );
status = NtQueryVirtualMemory( process, NULL, ProcessWorkingSetWatch, watchinfo, size, NULL );
status = NtQueryInformationProcess( process, ProcessWorkingSetWatch, watchinfo, size, NULL );
if (status)
{
......
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