aboutsummaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorPacketVideo CM <engbuild@pv.com>2010-06-15 16:35:55 -0700
committerPacketVideo CM <engbuild@pv.com>2010-06-15 16:35:55 -0700
commitbc24f3b873efee4b702febb16464e5048a4d323a (patch)
tree930281d95e9c4f08d93fe40af8d6fcb51433ed77 /protocols
parentd7f9323cbcbcb1d56a72c4baaa7c9c8b0c1d973a (diff)
downloadopencore-bc24f3b873efee4b702febb16464e5048a4d323a.tar.gz
RIO-9252: Fix out-of-bounds array index issue in 2way-stack.
Change-Id: I90463d039665d105dd6b22e1cbd14c01102b1251
Diffstat (limited to 'protocols')
-rw-r--r--protocols/systems/3g-324m_pvterminal/h324/tsc/include/tsc_statemanager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/systems/3g-324m_pvterminal/h324/tsc/include/tsc_statemanager.h b/protocols/systems/3g-324m_pvterminal/h324/tsc/include/tsc_statemanager.h
index 6bad2647b..0e18671c0 100644
--- a/protocols/systems/3g-324m_pvterminal/h324/tsc/include/tsc_statemanager.h
+++ b/protocols/systems/3g-324m_pvterminal/h324/tsc/include/tsc_statemanager.h
@@ -1,5 +1,5 @@
/* ------------------------------------------------------------------
- * Copyright (C) 1998-2009 PacketVideo
+ * Copyright (C) 1998-2010 PacketVideo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -51,7 +51,7 @@ class TSC_statemanager
public:
TSC_statemanager()
{
- for (uint ii = 0; ii <= MAX_TSC_STATES; ++ii)
+ for (uint ii = 0; ii < MAX_TSC_STATES; ++ii)
{
iTerminalState[ii] = 0;
}