mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
don't limit read/write access for kdb to umode mem
svn path=/trunk/; revision=16874
This commit is contained in:
parent
7917a7f21d
commit
af45d81b0e
1 changed files with 0 additions and 6 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue