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 2015/02/03 23:23:01 UTC

svn commit: r1656935 - in /tcl/rivet/trunk: ChangeLog src/experimental/rivet_worker_mpm.c

Author: mxmanghi
Date: Tue Feb  3 22:23:01 2015
New Revision: 1656935

URL: http://svn.apache.org/r1656935
Log:
    * src/experimental/rivet_worker_mpm.c: assigning to base server interpreter
    the channel referenced in private->channel (was dangling and caused segfaults)


Modified:
    tcl/rivet/trunk/ChangeLog
    tcl/rivet/trunk/src/experimental/rivet_worker_mpm.c

Modified: tcl/rivet/trunk/ChangeLog
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/ChangeLog?rev=1656935&r1=1656934&r2=1656935&view=diff
==============================================================================
--- tcl/rivet/trunk/ChangeLog (original)
+++ tcl/rivet/trunk/ChangeLog Tue Feb  3 22:23:01 2015
@@ -1,3 +1,7 @@
+2015-02-03 Massimo Manghi <mx...@apache.org>
+    * src/experimental/rivet_worker_mpm.c: assigning to base server interpreter
+    the channel referenced in private->channel (was dangling and caused segfaults)
+
 2015-02-02 Massimo Manghi <mx...@apache.org>
     * src/experimental/rivet_worker_mpm.c: removing commented code and adding
     new function Rivet_MPM_Shutdown aimed at forcing ancillary thread to exit
@@ -8,7 +12,7 @@
     * src/experimental/mod_rivet.c: moving call to after_every_script out
     of Rivet_ParseExecFile and into Rivet_SendContent. Any call to 
     ::rivet::abort_page is now trapped by abort_script
-    * src/apache-2/TclWebapache.c: if charset is set in the configuration
+    * src/experimental/TclWebapache.c: if charset is set in the configuration
     then it's set in the headers just before HTTP headers are sent (moved
     from mod_rivet.c
 

Modified: tcl/rivet/trunk/src/experimental/rivet_worker_mpm.c
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/src/experimental/rivet_worker_mpm.c?rev=1656935&r1=1656934&r2=1656935&view=diff
==============================================================================
--- tcl/rivet/trunk/src/experimental/rivet_worker_mpm.c (original)
+++ tcl/rivet/trunk/src/experimental/rivet_worker_mpm.c Tue Feb  3 22:23:01 2015
@@ -574,7 +574,7 @@ vhost_interp* Rivet_MPM_MasterInterp(voi
 
     interp_obj = Rivet_NewVHostInterp(private->pool);
     //interp_obj->channel = Rivet_CreateRivetChannel(private->pool,rivet_thread_key);
-
+    interp_obj->channel = private->channel;
     return interp_obj;
 }
 



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