summaryrefslogtreecommitdiffstats
path: root/generic/tclResult.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2010-03-24 15:31:47 (GMT)
committerdgp <dgp@users.sourceforge.net>2010-03-24 15:31:47 (GMT)
commit1adcd44891a492ada9ee28225979deeec480398c (patch)
treee35f7fbdcbeefd2d46ec87a195405c4187d5d740 /generic/tclResult.c
parentb199de25aaa631078acc7cd5e5f562d7c46485f3 (diff)
downloadtcl-1adcd44891a492ada9ee28225979deeec480398c.zip
tcl-1adcd44891a492ada9ee28225979deeec480398c.tar.gz
tcl-1adcd44891a492ada9ee28225979deeec480398c.tar.bz2
* generic/tclResult.c: [Bug 2383005] Revise [return -errorcode] so
* tests/result.test: that it rejects illegal non-list values.
Diffstat (limited to 'generic/tclResult.c')
-rw-r--r--generic/tclResult.c22
1 files changed, 21 insertions, 1 deletions
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]
*/