[YAROTOWS] Reintegrate the branch. For a brighter future.
[reactos.git] / reactos / subsystems / win32 / win32k / misc / copy.c
index 5668ade..6a50d55 100644 (file)
@@ -1,11 +1,11 @@
-#include "w32k.h"
+#include "win32k.h"
 
 NTSTATUS _MmCopyFromCaller( PVOID Target, PVOID Source, UINT Bytes ) {
     NTSTATUS Status = STATUS_SUCCESS;
 
     _SEH2_TRY
     {
-        /* ProbeForRead(Source,Bytes,1); */
+        ProbeForRead(Source,Bytes,1);
         RtlCopyMemory(Target,Source,Bytes);
     }
     _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)