|
From: <iea...@us...> - 2009-08-25 00:49:40
|
Revision: 737
http://seq.svn.sourceforge.net/seq/?rev=737&view=rev
Author: ieatacid
Date: 2009-08-25 00:49:31 +0000 (Tue, 25 Aug 2009)
Log Message:
-----------
Fixed buffer overflow in interface.cpp
Modified Paths:
--------------
showeq/trunk/ChangeLog
showeq/trunk/configure.in
showeq/trunk/src/interface.cpp
Modified: showeq/trunk/ChangeLog
===================================================================
--- showeq/trunk/ChangeLog 2009-08-21 03:20:30 UTC (rev 736)
+++ showeq/trunk/ChangeLog 2009-08-25 00:49:31 UTC (rev 737)
@@ -1,3 +1,15 @@
+ieatacid (8/24/09)
+-----------------
+- Updated version to 5.13.6.1
+- Fixed buffer overflow in interface.cpp
+
+ieatacid (8/20/09)
+-----------------
+- Updated version to 5.13.6
+- Updated opcodes
+- Updated structs
+- Updated source code where necessary
+
ieatacid (6/20/09)
-----------------
- Updated version to 5.13.5
Modified: showeq/trunk/configure.in
===================================================================
--- showeq/trunk/configure.in 2009-08-21 03:20:30 UTC (rev 736)
+++ showeq/trunk/configure.in 2009-08-25 00:49:31 UTC (rev 737)
@@ -2,7 +2,7 @@
dnl $Id$ $Name$
AC_PREREQ(2.59)
-AC_INIT(showeq, 5.13.6.0)
+AC_INIT(showeq, 5.13.6.1)
AC_CONFIG_SRCDIR(src/main.cpp)
AC_CANONICAL_SYSTEM
Modified: showeq/trunk/src/interface.cpp
===================================================================
--- showeq/trunk/src/interface.cpp 2009-08-21 03:20:30 UTC (rev 736)
+++ showeq/trunk/src/interface.cpp 2009-08-25 00:49:31 UTC (rev 737)
@@ -4304,7 +4304,7 @@
{
if (m_stsbarExp)
{
- char expperc[5];
+ char expperc[32];
sprintf(expperc, "%.2f", totalTick*100.0/330.0);
m_stsbarExp->setText(QString("Exp: %1 (%2/330, %3%)")
@@ -4333,7 +4333,7 @@
if (m_stsbarExp)
{
- char expperc[5];
+ char expperc[32];
sprintf(expperc, "%.2f", totalTick*100.0/330.0);
m_stsbarExp->setText(QString("Exp: %1 (%2/330, %3%)")
@@ -4350,7 +4350,7 @@
if (m_stsbarExp)
{
- char expperc[5];
+ char expperc[32];
sprintf(expperc, "%.2f", totalTick*100.0/330.0);
m_stsbarExp->setText(QString("Exp: %1 (%2/330, %3%)")
@@ -4374,7 +4374,7 @@
{
if (m_stsbarExpAA)
{
- char aaperc[5];
+ char aaperc[32];
sprintf(aaperc, "%.2f", totalTick*100.0/330.0);
m_stsbarExpAA->setText(QString("ExpAA: %1 (%2/330, %3%)")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|