summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2002-08-01 22:17:07 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2002-08-01 22:17:07 (GMT)
commita96927be11c81e5e49d42cb7d0574729840d8f17 (patch)
tree7fd897fd3977b8d6ed06c7f2d313386170fe2b00 /generic/tclExecute.c
parent7d43c4a79d3dd098871c8d3f36c5d43636aeacd7 (diff)
downloadtcl-a96927be11c81e5e49d42cb7d0574729840d8f17.zip
tcl-a96927be11c81e5e49d42cb7d0574729840d8f17.tar.gz
tcl-a96927be11c81e5e49d42cb7d0574729840d8f17.tar.bz2
* generic/tclExecute.c: bugfix (reading freed memory). Testsuite
passed on linux/i386, compile-13.1 hung on linux/alpha.
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c40
1 files changed, 18 insertions, 22 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 24613aa..d90a362 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.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: tclExecute.c,v 1.87 2002/08/01 20:02:11 msofer Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.88 2002/08/01 22:17:07 msofer Exp $
*/
#include "tclInt.h"
@@ -636,7 +636,7 @@ GrowEvaluationStack(eePtr)
int newElems = 2*currElems;
int currBytes = currElems * sizeof(Tcl_Obj *);
int newBytes = 2*currBytes;
- Tcl_Obj **newStackPtr;
+ Tcl_Obj **newStackPtr = (Tcl_Obj **) ckalloc((unsigned) newBytes);
Tcl_Obj **oldStackPtr = eePtr->stackPtr;
/*
@@ -647,33 +647,29 @@ GrowEvaluationStack(eePtr)
char *refCount = (char *) oldStackPtr[-1];
/*
- * Realloc the stack: copy existing stack items to the new stack
- * space, free the old storage if appropriate.
+ * Copy the existing stack items to the new stack space, free the old
+ * storage if appropriate, and record the refCount of the new stack
+ * held by the environment.
*/
- newStackPtr = (Tcl_Obj **) ckrealloc((VOID *) (oldStackPtr-1),
- (unsigned) newBytes);
newStackPtr++;
- eePtr->stackPtr = newStackPtr;
- eePtr->stackEnd = (newElems - 2); /* index of last usable item */
+ memcpy((VOID *) newStackPtr, (VOID *) oldStackPtr,
+ (size_t) currBytes);
- if (newStackPtr != oldStackPtr) {
+ if (refCount == (char *) 1) {
+ ckfree((VOID *) (oldStackPtr-1));
+ } else {
/*
- * The stack was moved; update the refCounts.
+ * Remove the reference corresponding to the
+ * environment pointer.
*/
-
- newStackPtr[-1] = (Tcl_Obj *) ((char *) 1);
- if (refCount == (char *) 1) {
- ckfree((VOID *) (oldStackPtr-1));
- } else {
- /*
- * Remove the reference corresponding to the
- * environment pointer.
- */
-
- oldStackPtr[-1] = (Tcl_Obj *) (refCount-1);
- }
+
+ oldStackPtr[-1] = (Tcl_Obj *) (refCount-1);
}
+
+ eePtr->stackPtr = newStackPtr;
+ eePtr->stackEnd = (newElems - 2); /* index of last usable item */
+ newStackPtr[-1] = (Tcl_Obj *) ((char *) 1);
}
/*