diff options
author | dgp <dgp@users.sourceforge.net> | 2003-04-07 16:55:02 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-04-07 16:55:02 (GMT) |
commit | 560310761c1b32d378c8e76c92218084bb5286fc (patch) | |
tree | bd786096fbc558671a92000e5d3434a84ab08ae1 /generic/tclCmdMZ.c | |
parent | 31f1bbeb86a2c589b3e632340522620ffa049c20 (diff) | |
download | tcl-560310761c1b32d378c8e76c92218084bb5286fc.zip tcl-560310761c1b32d378c8e76c92218084bb5286fc.tar.gz tcl-560310761c1b32d378c8e76c92218084bb5286fc.tar.bz2 |
* generic/tclCmdMZ.c (TraceExecutionProc): Added missing
Tcl_DiscardResult() call to avoid memory leak.
Diffstat (limited to 'generic/tclCmdMZ.c')
-rw-r--r-- | generic/tclCmdMZ.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclCmdMZ.c b/generic/tclCmdMZ.c index 4e70522..b72772b 100644 --- a/generic/tclCmdMZ.c +++ b/generic/tclCmdMZ.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdMZ.c,v 1.83 2003/03/13 02:48:52 dgp Exp $ + * RCS: @(#) $Id: tclCmdMZ.c,v 1.84 2003/04/07 16:55:13 dgp Exp $ */ #include "tclInt.h" @@ -4380,7 +4380,9 @@ TraceExecutionProc(ClientData clientData, Tcl_Interp *interp, /* Restore result if trace execution was successful */ Tcl_RestoreResult(interp, &state); iPtr->returnCode = stateCode; - } + } else { + Tcl_DiscardResult(&state); + } Tcl_DStringFree(&cmd); } |