mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
return error status in case probing the parameters failed in IoCreateFile()
svn path=/trunk/; revision=13260
This commit is contained in:
parent
5cb56337b2
commit
a3209eaf3e
1 changed files with 5 additions and 0 deletions
|
@ -409,6 +409,11 @@ IoCreateFile(OUT PHANDLE FileHandle,
|
|||
Status = _SEH_GetExceptionCode();
|
||||
}
|
||||
_SEH_END;
|
||||
|
||||
if(!NT_SUCCESS(Status))
|
||||
{
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue