mirror of https://github.com/acidanthera/audk.git
NetworkPkg/HttpBootDxe: Avoid the potential memory leak when eror happen.
Cc: Wang Fan <fan.wang@intel.com> Cc: Ye Ting <ting.ye@intel.com> Cc: Fu Siyuan <siyuan.fu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com> Reviewed-by: Wang Fan <fan.wang@intel.com>
This commit is contained in:
parent
9c14f76bae
commit
0dc5929645
|
@ -422,6 +422,9 @@ HttpBootParseDhcp4Packet (
|
||||||
if (!IsProxyOffer) {
|
if (!IsProxyOffer) {
|
||||||
OfferType = IsDnsOffer ? HttpOfferTypeDhcpDns : HttpOfferTypeDhcpOnly;
|
OfferType = IsDnsOffer ? HttpOfferTypeDhcpDns : HttpOfferTypeDhcpOnly;
|
||||||
} else {
|
} else {
|
||||||
|
if (Cache4->UriParser != NULL) {
|
||||||
|
FreePool (Cache4->UriParser);
|
||||||
|
}
|
||||||
return EFI_DEVICE_ERROR;
|
return EFI_DEVICE_ERROR;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -123,6 +123,7 @@ HttpBootStart (
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
CHAR8 *Uri;
|
CHAR8 *Uri;
|
||||||
|
|
||||||
|
Uri = NULL;
|
||||||
|
|
||||||
if (Private == NULL || FilePath == NULL) {
|
if (Private == NULL || FilePath == NULL) {
|
||||||
return EFI_INVALID_PARAMETER;
|
return EFI_INVALID_PARAMETER;
|
||||||
|
@ -154,6 +155,9 @@ HttpBootStart (
|
||||||
//
|
//
|
||||||
Status = HttpBootStop (Private);
|
Status = HttpBootStop (Private);
|
||||||
if (EFI_ERROR (Status)) {
|
if (EFI_ERROR (Status)) {
|
||||||
|
if (Uri != NULL) {
|
||||||
|
FreePool (Uri);
|
||||||
|
}
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue