Fix some build issues (ARM toolchain).

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
Reviewed-by: Fu, Siyuan <siyuan.fu@intel.com>
Reviewed-by: Wu, Jiaxin <jiaxin.wu@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15533 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Olivier Martin 2014-05-15 01:13:05 +00:00 committed by sfu5
parent 36d66acf27
commit 129ff94661
4 changed files with 2 additions and 8 deletions

View File

@ -216,12 +216,10 @@ Tcp4FlushPcb (
) )
{ {
SOCKET *Sock; SOCKET *Sock;
TCP4_PROTO_DATA *TcpProto;
IpIoConfigIp (Tcb->IpInfo, NULL); IpIoConfigIp (Tcb->IpInfo, NULL);
Sock = Tcb->Sk; Sock = Tcb->Sk;
TcpProto = (TCP4_PROTO_DATA *) Sock->ProtoReserved;
if (SOCK_IS_CONFIGURED (Sock)) { if (SOCK_IS_CONFIGURED (Sock)) {
RemoveEntryList (&Tcb->List); RemoveEntryList (&Tcb->List);

View File

@ -356,7 +356,6 @@ TcpInsertTcb (
LIST_ENTRY *Entry; LIST_ENTRY *Entry;
LIST_ENTRY *Head; LIST_ENTRY *Head;
TCP_CB *Node; TCP_CB *Node;
TCP4_PROTO_DATA *TcpProto;
ASSERT ( ASSERT (
(Tcb != NULL) && (Tcb != NULL) &&
@ -391,8 +390,6 @@ TcpInsertTcb (
InsertHeadList (Head, &Tcb->List); InsertHeadList (Head, &Tcb->List);
TcpProto = (TCP4_PROTO_DATA *) Tcb->Sk->ProtoReserved;
return 0; return 0;
} }

View File

@ -1895,3 +1895,4 @@ Udp4NetVectorExtFree (
) )
{ {
} }

View File

@ -304,12 +304,10 @@ TcpFlushPcb (
) )
{ {
SOCKET *Sock; SOCKET *Sock;
TCP_PROTO_DATA *TcpProto;
IpIoConfigIp (Tcb->IpInfo, NULL); IpIoConfigIp (Tcb->IpInfo, NULL);
Sock = Tcb->Sk; Sock = Tcb->Sk;
TcpProto = (TCP_PROTO_DATA *) Sock->ProtoReserved;
if (SOCK_IS_CONFIGURED (Sock)) { if (SOCK_IS_CONFIGURED (Sock)) {
RemoveEntryList (&Tcb->List); RemoveEntryList (&Tcb->List);