mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +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
|
_SEH_TRY
|
||||||
{
|
{
|
||||||
ProbeForRead(Src,
|
|
||||||
Bytes,
|
|
||||||
1);
|
|
||||||
RtlCopyMemory(Dest,
|
RtlCopyMemory(Dest,
|
||||||
Src,
|
Src,
|
||||||
Bytes);
|
Bytes);
|
||||||
|
@ -1584,9 +1581,6 @@ KdbpSafeWriteMemory(OUT PVOID Dest,
|
||||||
|
|
||||||
_SEH_TRY
|
_SEH_TRY
|
||||||
{
|
{
|
||||||
ProbeForWrite(Dest,
|
|
||||||
Bytes,
|
|
||||||
1);
|
|
||||||
RtlCopyMemory(Dest,
|
RtlCopyMemory(Dest,
|
||||||
Src,
|
Src,
|
||||||
Bytes);
|
Bytes);
|
||||||
|
|
Loading…
Reference in a new issue