gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash/plugin plugin.cpp


From: Markus Gothe
Subject: [Gnash-commit] gnash/plugin plugin.cpp
Date: Wed, 11 Oct 2006 19:59:04 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  06/10/11 19:59:04

Modified files:
        plugin         : plugin.cpp 

Log message:
        "const size_t maxargc = 15 + ..." as recommended on the mailing-list.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/plugin/plugin.cpp?cvsroot=gnash&r1=1.62&r2=1.63

Patches:
Index: plugin.cpp
===================================================================
RCS file: /sources/gnash/gnash/plugin/plugin.cpp,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -b -r1.62 -r1.63
--- plugin.cpp  9 Oct 2006 23:03:42 -0000       1.62
+++ plugin.cpp  11 Oct 2006 19:59:04 -0000      1.63
@@ -35,7 +35,7 @@
 // 
 //
 
-/* $Id: plugin.cpp,v 1.62 2006/10/09 23:03:42 rsavoye Exp $ */
+/* $Id: plugin.cpp,v 1.63 2006/10/11 19:59:04 nihilus Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -652,7 +652,7 @@
         paramvalues.push_back(param);
     }
 
-    const size_t maxargc = 14 + paramvalues.size()*2;
+    const size_t maxargc = 15 + paramvalues.size()*2;
     char **argv = new char *[maxargc];
 
     size_t argc = 0;




reply via email to

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