mirror of https://github.com/acidanthera/audk.git
add security check.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10513 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
a9dfdf4e68
commit
9c4a5f7423
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Misc support routines for tcp.
|
Misc support routines for tcp.
|
||||||
|
|
||||||
Copyright (c) 2005 - 2009, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2005 - 2010, 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
|
||||||
|
@ -500,6 +500,9 @@ TcpSetState (
|
||||||
IN UINT8 State
|
IN UINT8 State
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
ASSERT (Tcb->State < (sizeof (mTcpStateName) / sizeof (CHAR16 *)));
|
||||||
|
ASSERT (State < (sizeof (mTcpStateName) / sizeof (CHAR16 *)));
|
||||||
|
|
||||||
DEBUG (
|
DEBUG (
|
||||||
(EFI_D_INFO,
|
(EFI_D_INFO,
|
||||||
"Tcb (%p) state %s --> %s\n",
|
"Tcb (%p) state %s --> %s\n",
|
||||||
|
|
Loading…
Reference in New Issue