Don't use uninitialized var

svn path=/trunk/; revision=18007
This commit is contained in:
Gé van Geldorp 2005-09-23 09:17:38 +00:00
parent b7a7ffcfcd
commit d735771108

View file

@ -359,7 +359,7 @@ NtUserCreateAcceleratorTable(
if (Accel->Table == NULL)
{
ObmDeleteObject(hAccel, otAccel);
SetLastNtError(Status);
SetLastNtError(STATUS_NO_MEMORY);
RETURN( (HACCEL) 0);
}