mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +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)
|
if (Accel->Table == NULL)
|
||||||
{
|
{
|
||||||
ObmDeleteObject(hAccel, otAccel);
|
ObmDeleteObject(hAccel, otAccel);
|
||||||
SetLastNtError(Status);
|
SetLastNtError(STATUS_NO_MEMORY);
|
||||||
RETURN( (HACCEL) 0);
|
RETURN( (HACCEL) 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue