mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
fixed uninitialized variable warning
svn path=/trunk/; revision=18752
This commit is contained in:
parent
a699e1ac44
commit
b0ccf077ec
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ WriteProcessMemory (
|
|||
SIZE_T *lpNumberOfBytesWritten
|
||||
)
|
||||
{
|
||||
NTSTATUS Status, ProtectStatus;
|
||||
NTSTATUS Status, ProtectStatus = STATUS_SUCCESS;
|
||||
MEMORY_BASIC_INFORMATION MemInfo;
|
||||
ULONG Length;
|
||||
BOOLEAN UnProtect;
|
||||
|
|
Loading…
Reference in a new issue