don't limit read/write access for kdb to umode mem

svn path=/trunk/; revision=16874
This commit is contained in:
Thomas Bluemel 2005-07-29 16:53:27 +00:00
parent 7917a7f21d
commit af45d81b0e

View file

@ -1559,9 +1559,6 @@ KdbpSafeReadMemory(OUT PVOID Dest,
_SEH_TRY
{
ProbeForRead(Src,
Bytes,
1);
RtlCopyMemory(Dest,
Src,
Bytes);
@ -1584,9 +1581,6 @@ KdbpSafeWriteMemory(OUT PVOID Dest,
_SEH_TRY
{
ProbeForWrite(Dest,
Bytes,
1);
RtlCopyMemory(Dest,
Src,
Bytes);