diff options
Diffstat (limited to 'generic/tclCompCmds.c')
-rw-r--r-- | generic/tclCompCmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c index 477c4fe..a368383 100644 --- a/generic/tclCompCmds.c +++ b/generic/tclCompCmds.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: tclCompCmds.c,v 1.55 2004/01/20 15:40:37 dkf Exp $ + * RCS: @(#) $Id: tclCompCmds.c,v 1.56 2004/02/17 20:55:33 dkf Exp $ */ #include "tclInt.h" @@ -3283,7 +3283,6 @@ TclCompileSwitchCmd(interp, parsePtr, envPtr) code = TclCompileScript(interp, bodyTokenArray[i+1].start, bodyTokenArray[i+1].size, envPtr); if (code != TCL_OK) { - ckfree((char *)argv); ckfree((char *)bodyTokenArray); ckfree((char *)fixupArray); ckfree((char *)fixupTargetArray); @@ -3297,6 +3296,7 @@ TclCompileSwitchCmd(interp, parsePtr, envPtr) Tcl_AddObjErrorInfo(interp, errInfBuf, -1); ckfree(errInfBuf); } + ckfree((char *)argv); return code; } |