gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog libamf/lcshm.cpp


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog libamf/lcshm.cpp
Date: Sun, 23 Mar 2008 00:48:28 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  08/03/23 00:48:28

Modified files:
        .              : ChangeLog 
        libamf         : lcshm.cpp 

Log message:
        Fixed warning on uninitizilezed integer.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6009&r2=1.6010
http://cvs.savannah.gnu.org/viewcvs/gnash/libamf/lcshm.cpp?cvsroot=gnash&r1=1.8&r2=1.9

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6009
retrieving revision 1.6010
diff -u -b -r1.6009 -r1.6010
--- ChangeLog   22 Mar 2008 23:57:18 -0000      1.6009
+++ ChangeLog   23 Mar 2008 00:48:27 -0000      1.6010
@@ -1,3 +1,7 @@
+2008-03-23 Markus Gothe <address@hidden>
+
+       * libamf/lcshm.cpp: Fixed warning on uninitizilezed integer.
+
 2008-03-22  Dossy Shiobara <address@hidden>
 
        * utilities/Makefile.am (1.66): Win32 needs libintl, libz and

Index: libamf/lcshm.cpp
===================================================================
RCS file: /sources/gnash/gnash/libamf/lcshm.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- libamf/lcshm.cpp    22 Feb 2008 09:59:57 -0000      1.8
+++ libamf/lcshm.cpp    23 Mar 2008 00:48:28 -0000      1.9
@@ -177,7 +177,7 @@
 
     boost::uint8_t *addr = _baseaddr + LC_LISTENERS_START;
 
-    int len;
+    int len = 0;
     char *item = reinterpret_cast<char *>(addr);
     while (*item != 0) {
         if (name == item) {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]