mirror of https://github.com/acidanthera/audk.git
MdeModulePkg: Fix incorrect status check for SockProcessRcvToken
This patch is used to remove the status check for SockProcessRcvToken. It's not return EFI_STATUS. Cc: Fu Siyuan <siyuan.fu@intel.com> Cc: Ye Ting <ting.ye@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com> Reviewed-by: Ye Ting <ting.ye@intel.com> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
This commit is contained in:
parent
6be1193f14
commit
5679a62a0f
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Interface function of the Socket.
|
Interface function of the Socket.
|
||||||
|
|
||||||
Copyright (c) 2005 - 2012, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2005 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -697,11 +697,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