mirror of https://github.com/acidanthera/audk.git
Library usage checked
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7132 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c191cdd1ff
commit
7351070b11
|
@ -981,7 +981,7 @@ EhcMoniteAsyncRequests (
|
|||
}
|
||||
|
||||
if (ProcBuf != NULL) {
|
||||
gBS->FreePool (ProcBuf);
|
||||
FreePool (ProcBuf);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1490,7 +1490,7 @@ UhciAllocateDev (
|
|||
return Uhc;
|
||||
|
||||
ON_ERROR:
|
||||
gBS->FreePool (Uhc);
|
||||
FreePool (Uhc);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -1520,7 +1520,7 @@ UhciFreeDev (
|
|||
FreeUnicodeStringTable (Uhc->CtrlNameTable);
|
||||
}
|
||||
|
||||
gBS->FreePool (Uhc);
|
||||
FreePool (Uhc);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue