mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Don't use uninitialized var
svn path=/trunk/; revision=18007
This commit is contained in:
parent
b7a7ffcfcd
commit
d735771108
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ NtUserCreateAcceleratorTable(
|
|||
if (Accel->Table == NULL)
|
||||
{
|
||||
ObmDeleteObject(hAccel, otAccel);
|
||||
SetLastNtError(Status);
|
||||
SetLastNtError(STATUS_NO_MEMORY);
|
||||
RETURN( (HACCEL) 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue