[NTOS:PNPMGR]

* Attempt to address Timo's review about coding style changes.

svn path=/trunk/; revision=65443
This commit is contained in:
Amine Khaldi 2014-11-21 18:45:18 +00:00
parent 37a3e6af8a
commit 1dd4984c28

View file

@ -199,7 +199,10 @@ IopCaptureUnicodeString(PUNICODE_STRING DstName, PUNICODE_STRING SrcName)
}
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
{
if (Name.Buffer) ExFreePool(Name.Buffer);
if (Name.Buffer)
{
ExFreePool(Name.Buffer);
}
Status = _SEH2_GetExceptionCode();
}
_SEH2_END;