summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--generic/tclResult.c22
-rw-r--r--tests/result.test6
3 files changed, 30 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a192b43..e9f483a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-03-24 Don Porter <dgp@users.sourceforge.net>
+
+ * generic/tclResult.c: [Bug 2383005] Revise [return -errorcode] so
+ * tests/result.test: that it rejects illegal non-list values.
+
2010-03-20 Donal K. Fellows <dkf@users.sf.net>
* generic/tclIO.c (CopyData): Allow the total number of bytes copied
diff --git a/generic/tclResult.c b/generic/tclResult.c
index 054ba9d..c461387 100644
--- a/generic/tclResult.c
+++ b/generic/tclResult.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclResult.c,v 1.47 2008/03/07 22:42:49 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclResult.c,v 1.47.2.1 2010/03/24 15:31:48 dgp Exp $
*/
#include "tclInt.h"
@@ -1379,6 +1379,26 @@ TclMergeReturnOptions(
}
/*
+ * Check for bogus -errorcode value.
+ */
+
+ Tcl_DictObjGet(NULL, returnOpts, keys[KEY_ERRORCODE], &valuePtr);
+ if (valuePtr != NULL) {
+ int length;
+
+ if (TCL_ERROR == Tcl_ListObjLength(NULL, valuePtr, &length )) {
+ /*
+ * Value is not a list, which is illegal for -errorcode.
+ */
+ Tcl_ResetResult(interp);
+ Tcl_AppendResult(interp, "bad -errorcode value: "
+ "expected a list but got \"",
+ TclGetString(valuePtr), "\"", NULL);
+ goto error;
+ }
+ }
+
+ /*
* Convert [return -code return -level X] to [return -code ok -level X+1]
*/
diff --git a/tests/result.test b/tests/result.test
index cefcaed..8573217 100644
--- a/tests/result.test
+++ b/tests/result.test
@@ -132,8 +132,10 @@ test result-6.2 {Bug 1649062} -setup {
} -cleanup {
rename foo {}
} -result {foo {} {}}
-
-
+test result-6.3 {Bug 2383005} {
+ catch {return -code error -errorcode {{}a} eek} m
+ set m
+} {bad -errorcode value: expected a list but got "{}a"}
# cleanup
cleanupTests
return