Skip to content

Commit

Permalink
kernelbase: Don't call NtFlushInstructionCache() in FlushInstructionC…
Browse files Browse the repository at this point in the history
…ache().

CW-Bug-Id: #23951
  • Loading branch information
Paul Gofman committed Jun 21, 2024
1 parent 25891ee commit 97aa0e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/kernelbase/memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ BOOL WINAPI DECLSPEC_HOTPATCH FlushInstructionCache( HANDLE process, LPCVOID add
send_cross_process_notification( list, CrossProcessFlushCache, addr, size, 0 );
close_cross_process_connection( list );
}
return set_ntstatus( NtFlushInstructionCache( process, addr, size ));
return TRUE;
}


Expand Down

0 comments on commit 97aa0e7

Please sign in to comment.