summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2008-04-14 16:25:45 (GMT)
committerdgp <dgp@noemail.net>2008-04-14 16:25:45 (GMT)
commit4565d20c077467437977a40f5c65463f76c9e719 (patch)
treeb51061f240e012eecdf8658074dc470d0c11f0b0 /generic/tclExecute.c
parent3256f427cd77ed361a3a75ad6dda9477608b5e90 (diff)
downloadtcl-4565d20c077467437977a40f5c65463f76c9e719.zip
tcl-4565d20c077467437977a40f5c65463f76c9e719.tar.gz
tcl-4565d20c077467437977a40f5c65463f76c9e719.tar.bz2
* generic/tclExecute.c: Plug memory leak introduced in the
2008-03-07 commit. [Bug 1940433] FossilOrigin-Name: 0d252e2b11c86550f652cbbecc16286376d0d5ff
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 5bf2fd7..b94785d 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.94.2.24 2008/03/10 14:34:33 dgp Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.94.2.25 2008/04/14 16:25:49 dgp Exp $
*/
#include "tclInt.h"
@@ -827,7 +827,7 @@ Tcl_ExprObj(interp, objPtr, resultPtrPtr)
auxDataPtr++;
}
TclFreeCompileEnv(&compEnv);
- return result;
+ goto done;
}
/*
@@ -888,6 +888,7 @@ Tcl_ExprObj(interp, objPtr, resultPtrPtr)
Tcl_SetObjResult(interp, saveObjPtr);
}
+done:
TclDecrRefCount(saveObjPtr);
return result;
}