summaryrefslogtreecommitdiffstats
path: root/generic/tclVar.c
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2003-05-12 17:31:50 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2003-05-12 17:31:50 (GMT)
commit88277cfbf1cceab46833ba93902ebb9fe1da8133 (patch)
treea67727437b70adf865cb3434bd950af5eb0c3db2 /generic/tclVar.c
parentb95a9126f621fbe906c1e61a45a571d044973e91 (diff)
downloadtcl-88277cfbf1cceab46833ba93902ebb9fe1da8133.zip
tcl-88277cfbf1cceab46833ba93902ebb9fe1da8133.tar.gz
tcl-88277cfbf1cceab46833ba93902ebb9fe1da8133.tar.bz2
* generic/tclVar.c (TclObjLookupVar): [Bug 735335] temporary fix,
disabling usage of tclNsVarNameType. * tests/var.test (var-15.1): test for [Bug 735335]
Diffstat (limited to 'generic/tclVar.c')
-rw-r--r--generic/tclVar.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/generic/tclVar.c b/generic/tclVar.c
index f9957fe..a46b2d3 100644
--- a/generic/tclVar.c
+++ b/generic/tclVar.c
@@ -15,7 +15,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclVar.c,v 1.69.2.2 2003/04/16 23:31:47 dgp Exp $
+ * RCS: @(#) $Id: tclVar.c,v 1.69.2.3 2003/05/12 17:31:51 msofer Exp $
*/
#include "tclInt.h"
@@ -551,6 +551,17 @@ TclObjLookupVar(interp, part1Ptr, part2, flags, msg, createPart1, createPart2,
procPtr->refCount++;
part1Ptr->internalRep.twoPtrValue.ptr1 = (VOID *) procPtr;
part1Ptr->internalRep.twoPtrValue.ptr2 = (VOID *) index;
+#if 0
+ /*
+ * TEMPORARYLY DISABLED tclNsVarNameType
+ *
+ * This is a stop-gap fix for [Bug 735335]; it may not address the
+ * real issue (which I haven't pinned down yet), but it avoids the
+ * segfault in the test case.
+ * This optimisation will hopefully be turned back on soon.
+ * Miguel Sofer, 2003-05-12
+ */
+
} else if (index > -3) {
Namespace *nsPtr;
@@ -559,6 +570,7 @@ TclObjLookupVar(interp, part1Ptr, part2, flags, msg, createPart1, createPart2,
part1Ptr->typePtr = &tclNsVarNameType;
part1Ptr->internalRep.twoPtrValue.ptr1 = (VOID *) nsPtr;
part1Ptr->internalRep.twoPtrValue.ptr2 = (VOID *) varPtr;
+#endif
} else {
/*
* At least mark part1Ptr as already parsed.