X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=reactos%2Fsubsystems%2Fwin32%2Fwin32k%2Fmisc%2Fcopy.c;h=6a50d5562dd950f0e8704c0e7698826ed2960b37;hp=a40a5be6ffbafe337d84d84a4738190f282c10f3;hb=684c3d3791b92777e7de259fbc6691161f6808c7;hpb=f5258132f4eef483cce5491037d4383f958ce1a2 diff --git a/reactos/subsystems/win32/win32k/misc/copy.c b/reactos/subsystems/win32/win32k/misc/copy.c index a40a5be6ffb..6a50d5562dd 100644 --- a/reactos/subsystems/win32/win32k/misc/copy.c +++ b/reactos/subsystems/win32/win32k/misc/copy.c @@ -5,7 +5,7 @@ NTSTATUS _MmCopyFromCaller( PVOID Target, PVOID Source, UINT Bytes ) { _SEH2_TRY { - /* ProbeForRead(Source,Bytes,1); */ + ProbeForRead(Source,Bytes,1); RtlCopyMemory(Target,Source,Bytes); } _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)