- Remove lpAddress check, this is broken trunk

svn path=/trunk/; revision=38458
This commit is contained in:
Dmitry Chapyshev 2008-12-29 17:14:17 +00:00
parent 93f8f62632
commit cb89e7b0bd

View file

@ -28,12 +28,6 @@ VirtualAllocEx(IN HANDLE hProcess,
{
NTSTATUS Status;
if (lpAddress != NULL)
{
SetLastErrorByStatus(STATUS_INVALID_PARAMETER);
return NULL;
}
/* Allocate the memory */
Status = NtAllocateVirtualMemory(hProcess,
(PVOID *)&lpAddress,