diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-02-21 12:48:49 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-02-21 12:48:49 (GMT) |
commit | 17485c720f551fd753dbaa2f744bc5ad46abb444 (patch) | |
tree | 4634e97b2dabba46adf371e932361f872a21ba31 /generic/tclLoad.c | |
parent | 4839bd41c090e36048ca739de2c1c0ca6347670c (diff) | |
download | tcl-17485c720f551fd753dbaa2f744bc5ad46abb444.zip tcl-17485c720f551fd753dbaa2f744bc5ad46abb444.tar.gz tcl-17485c720f551fd753dbaa2f744bc5ad46abb444.tar.bz2 |
Fix memory leak on error path
Diffstat (limited to 'generic/tclLoad.c')
-rw-r--r-- | generic/tclLoad.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclLoad.c b/generic/tclLoad.c index 6773ac4..2227e6e 100644 --- a/generic/tclLoad.c +++ b/generic/tclLoad.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclLoad.c,v 1.9 2003/02/01 23:37:29 kennykb Exp $ + * RCS: @(#) $Id: tclLoad.c,v 1.10 2004/02/21 12:48:50 dkf Exp $ */ #include "tclInt.h" @@ -168,7 +168,8 @@ Tcl_LoadObjCmd(dummy, interp, objc, objv) slaveIntName = Tcl_GetString(objv[3]); target = Tcl_GetSlave(interp, slaveIntName); if (target == NULL) { - return TCL_ERROR; + code = TCL_ERROR; + goto done; } } |