gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog plugin/plugin.cpp


From: Bastiaan Jacques
Subject: [Gnash-commit] gnash ChangeLog plugin/plugin.cpp
Date: Wed, 07 Mar 2007 19:06:12 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Bastiaan Jacques <bjacques>     07/03/07 19:06:12

Modified files:
        .              : ChangeLog 
        plugin         : plugin.cpp 

Log message:
        Guard the first argument to kill() for previously unconsidered values. 
        Patch by Robert Millan <address@hidden>.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.2569&r2=1.2570
http://cvs.savannah.gnu.org/viewcvs/gnash/plugin/plugin.cpp?cvsroot=gnash&r1=1.72&r2=1.73

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.2569
retrieving revision 1.2570
diff -u -b -r1.2569 -r1.2570
--- ChangeLog   7 Mar 2007 18:42:22 -0000       1.2569
+++ ChangeLog   7 Mar 2007 19:06:12 -0000       1.2570
@@ -1,3 +1,8 @@
+2007-03-07 Robert Millan <address@hidden>
+
+       * plugin/plugin.cpp: Guard the first argument to kill() for previously
+       unconsidered values.
+
 2007-03-07 Udo Giacomozzi <address@hidden>
 
        * backend/render_handler_agg.cpp: fixed segfault #19223; set correct

Index: plugin/plugin.cpp
===================================================================
RCS file: /sources/gnash/gnash/plugin/plugin.cpp,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -b -r1.72 -r1.73
--- plugin/plugin.cpp   6 Mar 2007 18:06:12 -0000       1.72
+++ plugin/plugin.cpp   7 Mar 2007 19:06:12 -0000       1.73
@@ -14,7 +14,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: plugin.cpp,v 1.72 2007/03/06 18:06:12 rsavoye Exp $ */
+/* $Id: plugin.cpp,v 1.73 2007/03/07 19:06:12 bjacques Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -295,7 +295,7 @@
 void
 nsPluginInstance::shut()
 {
-    if (_childpid) {
+    if (_childpid > 0) {
        // it seems that waiting after a SIGINT hangs firefox
        // IFF not run from the console (see bug#17082).
        // SIGTERM instead solves this problem




reply via email to

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