mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
NetworkPkg: Fix invalid pointer for DNS response token on error
Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=3719 This issue is introduced by the commit 43d7e607. Token->RspData.H2AData is de-allocated on error but it is not set to NULL. HTTP module attempts to free again and cause assert. Signed-off-by: Baraneedharan Anbazhagan <anbazhagan@hp.com> Reviewed-by: Wu Jiaxin <jiaxin.wu@intel.com>
This commit is contained in:
parent
4c7ce0d285
commit
bb1bba3d77
@ -1700,6 +1700,7 @@ ON_EXIT:
|
||||
}
|
||||
|
||||
FreePool (Dns4TokenEntry->Token->RspData.H2AData);
|
||||
Dns4TokenEntry->Token->RspData.H2AData = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1731,6 +1732,7 @@ ON_EXIT:
|
||||
}
|
||||
|
||||
FreePool (Dns6TokenEntry->Token->RspData.H2AData);
|
||||
Dns6TokenEntry->Token->RspData.H2AData = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user