From 9c4a5f742373f2a83154e6e39b6527636081151d Mon Sep 17 00:00:00 2001 From: vanjeff Date: Wed, 19 May 2010 01:49:34 +0000 Subject: add security check. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10513 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Misc.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'MdeModulePkg') diff --git a/MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Misc.c b/MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Misc.c index f36a5bd1bf..245da8637d 100644 --- a/MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Misc.c +++ b/MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Misc.c @@ -1,7 +1,7 @@ /** @file Misc support routines for tcp. -Copyright (c) 2005 - 2009, Intel Corporation. All rights reserved.
+Copyright (c) 2005 - 2010, Intel Corporation. All rights reserved.
This program and the accompanying materials 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 @@ -171,7 +171,7 @@ TcpInitTcbPeer ( @param Local Pointer to the local (IP, Port). @param Remote Pointer to the remote (IP, Port). - @return Pointer to the TCP_CB with the least number of wildcard, + @return Pointer to the TCP_CB with the least number of wildcard, if NULL no match is found. **/ @@ -500,6 +500,9 @@ TcpSetState ( IN UINT8 State ) { + ASSERT (Tcb->State < (sizeof (mTcpStateName) / sizeof (CHAR16 *))); + ASSERT (State < (sizeof (mTcpStateName) / sizeof (CHAR16 *))); + DEBUG ( (EFI_D_INFO, "Tcb (%p) state %s --> %s\n", -- cgit v1.2.3