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:
jji4 2008-12-26 06:53:45 +00:00
parent c191cdd1ff
commit 7351070b11
2 changed files with 3 additions and 3 deletions

View File

@ -981,7 +981,7 @@ EhcMoniteAsyncRequests (
}
if (ProcBuf != NULL) {
gBS->FreePool (ProcBuf);
FreePool (ProcBuf);
}
}

View File

@ -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);
}