summaryrefslogtreecommitdiffstats
path: root/generic/tclCompCmds.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2003-04-07 20:00:37 (GMT)
committerdgp@users.sourceforge.net <dgp>2003-04-07 20:00:37 (GMT)
commitba0e5dff42699a58ee7399a3f5e6b66d695bc52b (patch)
treed3a95d8b4ce2de7591ac44d19e9f1155e1865de9 /generic/tclCompCmds.c
parent8788bedb41982f30bd9af31b41ba96e72d178bcd (diff)
downloadtcl-ba0e5dff42699a58ee7399a3f5e6b66d695bc52b.zip
tcl-ba0e5dff42699a58ee7399a3f5e6b66d695bc52b.tar.gz
tcl-ba0e5dff42699a58ee7399a3f5e6b66d695bc52b.tar.bz2
* generic/tclCompCmds.c (TclCompileIfCmd): Corrected string limits of
arguments interpolated in error messages. [Bug 711371]
Diffstat (limited to 'generic/tclCompCmds.c')
-rw-r--r--generic/tclCompCmds.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c
index 47b3b1a..ee4e809 100644
--- a/generic/tclCompCmds.c
+++ b/generic/tclCompCmds.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCompCmds.c,v 1.45 2003/04/03 16:46:43 dgp Exp $
+ * RCS: @(#) $Id: tclCompCmds.c,v 1.46 2003/04/07 20:00:47 dgp Exp $
*/
#include "tclInt.h"
@@ -1193,8 +1193,8 @@ TclCompileIfCmd(interp, parsePtr, envPtr)
}
if (wordIdx >= numWords) {
sprintf(buffer,
- "wrong # args: no expression after \"%.30s\" argument",
- word);
+ "wrong # args: no expression after \"%.*s\" argument",
+ numBytes, word);
Tcl_ResetResult(interp);
Tcl_AppendToObj(Tcl_GetObjResult(interp), buffer, -1);
code = TCL_ERROR;
@@ -1256,7 +1256,7 @@ TclCompileIfCmd(interp, parsePtr, envPtr)
tokenPtr = testTokenPtr + (testTokenPtr->numComponents + 1);
wordIdx++;
if (wordIdx >= numWords) {
- sprintf(buffer, "wrong # args: no script following \"%.20s\" argument", testTokenPtr->start);
+ sprintf(buffer, "wrong # args: no script following \"%.*s\" argument", testTokenPtr->size, testTokenPtr->start);
Tcl_ResetResult(interp);
Tcl_AppendToObj(Tcl_GetObjResult(interp), buffer, -1);
code = TCL_ERROR;