mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[NTOS:PNPMGR]
* Attempt to address Timo's review about coding style changes. svn path=/trunk/; revision=65443
This commit is contained in:
parent
37a3e6af8a
commit
1dd4984c28
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue