NetworkPkg/TcpDxe: Remove the status check of SockProcessRcvToken
SockProcessRcvToken only returns the number of the received bytes, not an EFI Status. Cc: "Siyuan Fu" <siyuan.fu@intel.com> Cc: "Jiaxin Wu" <jiaxin.wu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: Samer El-Haj-Mahmoud <elhaj@hpe.com> Reviewed-by: Jiaxin Wu <jiaxin.wu@intel.com> Reviewed-by: Siyuan Fu <siyuan.fu@intel.com>
This commit is contained in:
parent
2be45bfe27
commit
72a4f34eab
|
@ -724,11 +724,7 @@ SockRcv (
|
||||||
}
|
}
|
||||||
|
|
||||||
if (RcvdBytes != 0) {
|
if (RcvdBytes != 0) {
|
||||||
Status = SockProcessRcvToken (Sock, RcvToken);
|
SockProcessRcvToken (Sock, RcvToken);
|
||||||
|
|
||||||
if (EFI_ERROR (Status)) {
|
|
||||||
goto Exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
Status = Sock->ProtoHandler (Sock, SOCK_CONSUMED, NULL);
|
Status = Sock->ProtoHandler (Sock, SOCK_CONSUMED, NULL);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue