- Add a missing return in case of exception. Spotted by Stefan Ginsberg.

svn path=/trunk/; revision=34060
This commit is contained in:
Aleksey Bragin 2008-06-23 14:55:55 +00:00
parent 3a0ed2c825
commit bd7a8aac20

View file

@ -135,6 +135,7 @@ NtOpenKey(OUT PHANDLE KeyHandle,
Status = _SEH_GetExceptionCode();
}
_SEH_END;
if(!NT_SUCCESS(Status)) return Status;
}
/* Just let the object manager handle this */