Fix memory leak

Signed-off-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Chao Zhang<chao.b.zhang@intel.com>

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13601 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
ydong10 2012-08-09 01:39:56 +00:00
parent 30d1bcd131
commit aaee3a97fb
1 changed files with 4 additions and 0 deletions

View File

@ -410,6 +410,10 @@ BdsLibConnectUsbDevByShortFormDP(
}
}
if (HandleArray != NULL) {
FreePool (HandleArray);
}
if (AtLeastOneConnected) {
return EFI_SUCCESS;
}