aboutsummaryrefslogtreecommitdiff
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
parentd7f9323cbcbcb1d56a72c4baaa7c9c8b0c1d973a (diff)
downloadopencore-bc24f3b873efee4b702febb16464e5048a4d323a.tar.gz
RIO-9252: Fix out-of-bounds array index issue in 2way-stack.
Change-Id: I90463d039665d105dd6b22e1cbd14c01102b1251
-rw-r--r--engines/2way/src/pv_2way_sdkinfo.h2
-rw-r--r--engines/author/src/pv_author_sdkinfo.h2
-rw-r--r--engines/player/src/pv_player_sdkinfo.h2
-rw-r--r--protocols/systems/3g-324m_pvterminal/h324/tsc/include/tsc_statemanager.h4
4 files changed, 5 insertions, 5 deletions
diff --git a/engines/2way/src/pv_2way_sdkinfo.h b/engines/2way/src/pv_2way_sdkinfo.h
index e7060bf69..251e54026 100644
--- a/engines/2way/src/pv_2way_sdkinfo.h
+++ b/engines/2way/src/pv_2way_sdkinfo.h
@@ -21,7 +21,7 @@
// This header file is automatically generated at build-time
// *** OFFICIAL RELEASE INFO -- Will not auto update
-#define PV2WAY_ENGINE_SDKINFO_LABEL "1461956"
+#define PV2WAY_ENGINE_SDKINFO_LABEL "1462962"
#define PV2WAY_ENGINE_SDKINFO_DATE 0x20100527
#endif //PV_2WAY_SDKINFO_H_INCLUDED
diff --git a/engines/author/src/pv_author_sdkinfo.h b/engines/author/src/pv_author_sdkinfo.h
index ffe5f6d17..c224b9891 100644
--- a/engines/author/src/pv_author_sdkinfo.h
+++ b/engines/author/src/pv_author_sdkinfo.h
@@ -21,7 +21,7 @@
// This header file is automatically generated at build-time
// *** OFFICIAL RELEASE INFO -- Will not auto update
-#define PVAUTHOR_ENGINE_SDKINFO_LABEL "1461956"
+#define PVAUTHOR_ENGINE_SDKINFO_LABEL "1462962"
#define PVAUTHOR_ENGINE_SDKINFO_DATE 0x20100527
#endif //PV_AUTHOR_SDKINFO_H_INCLUDED
diff --git a/engines/player/src/pv_player_sdkinfo.h b/engines/player/src/pv_player_sdkinfo.h
index 99aa6c7ad..bbbb6d9e3 100644
--- a/engines/player/src/pv_player_sdkinfo.h
+++ b/engines/player/src/pv_player_sdkinfo.h
@@ -21,7 +21,7 @@
// This header file is automatically generated at build-time
// *** OFFICIAL RELEASE INFO -- Will not auto update
-#define PVPLAYER_ENGINE_SDKINFO_LABEL "1461956"
+#define PVPLAYER_ENGINE_SDKINFO_LABEL "1462962"
#define PVPLAYER_ENGINE_SDKINFO_DATE 0x20100527
#endif //PV_PLAYER_SDKINFO_H_INCLUDED
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;
}