Tcl Source Code

Artifact [c3163b3635]
Login

Artifact c3163b36357247da92a72fce4c34482ef67038c8:

Attachment "tclIndexObj.c.diff" to ticket [813056ffff] added by muonics 2003-09-26 20:26:28.
--- tclIndexObj.c.old	Wed Feb 27 21:11:25 2002
+++ tclIndexObj.c	Fri Sep 26 06:12:33 2003
@@ -175,7 +175,6 @@
     char *key, *p1;
     CONST char *p2;
     CONST char * CONST *entryPtr;
-    Tcl_Obj *resultPtr;
     IndexRep *indexRep;
 
     /*
@@ -271,7 +270,8 @@
 	 * Produce a fancy error message.
 	 */
 	int count;
-	resultPtr = Tcl_GetObjResult(interp);
+	Tcl_Obj* resultPtr = Tcl_NewObj();
+
 	Tcl_AppendStringsToObj(resultPtr,
 		(numAbbrev > 1) ? "ambiguous " : "bad ", msg, " \"",
 		key, "\": must be ", STRING_AT(tablePtr,offset,0), (char*)NULL);
@@ -287,6 +287,8 @@
 			(char *) NULL);
 	    }
 	}
+
+	Tcl_SetObjResult(interp, resultPtr);
     }
     return TCL_ERROR;
 }