don't limit read/write access for kdb to umode mem
Modified: trunk/reactos/ntoskrnl/kdbg/kdb.c
--- trunk/reactos/ntoskrnl/kdbg/kdb.c 2005-07-29 16:48:09 UTC (rev 16873) +++ trunk/reactos/ntoskrnl/kdbg/kdb.c 2005-07-29 16:53:27 UTC (rev 16874) @@ -1559,9 +1559,6 @@
_SEH_TRY {
- ProbeForRead(Src, - Bytes, - 1);
RtlCopyMemory(Dest, Src, Bytes); @@ -1584,9 +1581,6 @@
_SEH_TRY {
- ProbeForWrite(Dest, - Bytes, - 1);
RtlCopyMemory(Dest, Src, Bytes);