You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-cvs@tcl.apache.org by mx...@apache.org on 2013/02/12 22:43:30 UTC

svn commit: r1445398 - in /tcl/rivet/trunk: ChangeLog src/apache-2/mod_rivet.c

Author: mxmanghi
Date: Tue Feb 12 21:43:30 2013
New Revision: 1445398

URL: http://svn.apache.org/r1445398
Log:
    * src/apache-2/mod_rivet.c: To avoid clash on freeing resources Tcl_Finalize
    is removed from child process cleanup (Bug #54162)


Modified:
    tcl/rivet/trunk/ChangeLog
    tcl/rivet/trunk/src/apache-2/mod_rivet.c

Modified: tcl/rivet/trunk/ChangeLog
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/ChangeLog?rev=1445398&r1=1445397&r2=1445398&view=diff
==============================================================================
--- tcl/rivet/trunk/ChangeLog (original)
+++ tcl/rivet/trunk/ChangeLog Tue Feb 12 21:43:30 2013
@@ -1,3 +1,7 @@
+2013-02-12 Massimo Manghi <mx...@apache.org>
+    * src/apache-2/mod_rivet.c: To avoid clash on freeing resources Tcl_Finalize
+    is removed from child process cleanup (Bug #54162)
+
 2013-02-11 Massimo Manghi <mx...@apache.org>
     * rivet/packages/dio/dio.tcl: fixing nasty bug introduced with Rivet 2.1. When
     method 'store' is updating the call to method update needs a flat list as

Modified: tcl/rivet/trunk/src/apache-2/mod_rivet.c
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/src/apache-2/mod_rivet.c?rev=1445398&r1=1445397&r2=1445398&view=diff
==============================================================================
--- tcl/rivet/trunk/src/apache-2/mod_rivet.c (original)
+++ tcl/rivet/trunk/src/apache-2/mod_rivet.c Tue Feb 12 21:43:30 2013
@@ -1552,7 +1552,11 @@ Rivet_ChildExit(void *data)
 {
     server_rec *s = (server_rec*) data;
     Rivet_ChildHandlers(s, 0);
-    Tcl_Finalize();
+
+/* Tcl_Finalize remove to meet requirement to coexist with mod_websh (Bug #54162) */
+
+    //Tcl_Finalize();
+
     return OK;
 }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: site-cvs-unsubscribe@tcl.apache.org
For additional commands, e-mail: site-cvs-help@tcl.apache.org