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/05/06 16:43:04 UTC

svn commit: r1479588 - in /tcl/rivet/branches/2.1: ./ ChangeLog src/apache-2/rivetCore.c

Author: mxmanghi
Date: Mon May  6 14:43:03 2013
New Revision: 1479588

URL: http://svn.apache.org/r1479588
Log:
    * src/apache-2/rivetCore.c: call to 'panic' changed to fulfill the hardening
    flags that (quite oddly) fail when building against Tcl8.6 on some platforms
    or Linux distros


Modified:
    tcl/rivet/branches/2.1/   (props changed)
    tcl/rivet/branches/2.1/ChangeLog
    tcl/rivet/branches/2.1/src/apache-2/rivetCore.c

Propchange: tcl/rivet/branches/2.1/
------------------------------------------------------------------------------
  Merged /tcl/rivet/trunk:r1478290-1479586

Modified: tcl/rivet/branches/2.1/ChangeLog
URL: http://svn.apache.org/viewvc/tcl/rivet/branches/2.1/ChangeLog?rev=1479588&r1=1479587&r2=1479588&view=diff
==============================================================================
--- tcl/rivet/branches/2.1/ChangeLog (original)
+++ tcl/rivet/branches/2.1/ChangeLog Mon May  6 14:43:03 2013
@@ -1,9 +1,14 @@
+2013-05-06 Massimo Manghi <mx...@apache.org>
+    * src/apache-2/rivetCore.c: call to 'panic' changed to fulfill the hardening
+    flags that (quite oddly) fail when building against Tcl8.6 on some platforms
+    or Linux distros
+
 2013-05-02 Massimo Manghi <mxmanghi@apache.org
     * doc/xml/commands.xml: improved entry for ::rivet::var with an explanation
     and example provided by Harald
     * configure.ac,VERSION: version number bumped to 2.1.2
     * Changelog: merging latest changes done to 'trunk'
- 
+
 2013-04-30 Massimo Manghi <mx...@apache.org>
     * doc/xml/commands.xml: improved entry for ::rivet::var with an explanation
     and example provided by Harald

Modified: tcl/rivet/branches/2.1/src/apache-2/rivetCore.c
URL: http://svn.apache.org/viewvc/tcl/rivet/branches/2.1/src/apache-2/rivetCore.c?rev=1479588&r1=1479587&r2=1479588&view=diff
==============================================================================
--- tcl/rivet/branches/2.1/src/apache-2/rivetCore.c (original)
+++ tcl/rivet/branches/2.1/src/apache-2/rivetCore.c Mon May  6 14:43:03 2013
@@ -1456,7 +1456,7 @@ TestpanicCmd(dummy, interp, argc, argv)
      */
 
     argString = Tcl_Merge(argc-1, argv+1);
-    panic(argString);
+    panic("%s",argString);
     ckfree((char *)argString);
 
     return TCL_OK;



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