RegSetValueExA: lpData can be NULL.

This fixes three failures of the WINE regression tests.

svn path=/trunk/; revision=11614
This commit is contained in:
Eric Kohl 2004-11-11 11:21:30 +00:00
parent 2fada79f2e
commit 7ac73dbbc4

View file

@ -1,4 +1,4 @@
/* $Id: reg.c,v 1.61 2004/10/10 10:43:23 ekohl Exp $
/* $Id: reg.c,v 1.62 2004/11/11 11:21:30 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@ -3112,12 +3112,6 @@ RegSetValueExA (HKEY hKey,
LPBYTE pData;
DWORD DataSize;
if (lpData == NULL)
{
SetLastError (ERROR_INVALID_PARAMETER);
return ERROR_INVALID_PARAMETER;
}
if (lpValueName != NULL &&
strlen(lpValueName) != 0)
{