Skip to content

Commit 97aa0e7

Browse files
author
Paul Gofman
committed
kernelbase: Don't call NtFlushInstructionCache() in FlushInstructionCache().
CW-Bug-Id: #23951
1 parent 25891ee commit 97aa0e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dlls/kernelbase/memory.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ BOOL WINAPI DECLSPEC_HOTPATCH FlushInstructionCache( HANDLE process, LPCVOID add
134134
send_cross_process_notification( list, CrossProcessFlushCache, addr, size, 0 );
135135
close_cross_process_connection( list );
136136
}
137-
return set_ntstatus( NtFlushInstructionCache( process, addr, size ));
137+
return TRUE;
138138
}
139139

140140

0 commit comments

Comments
 (0)