diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-04-02 22:52:26 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-04-02 22:52:26 (GMT) |
commit | cc240f86c997bfabb858ee9cac79fe0eee309355 (patch) | |
tree | 02e24cb83437d88c4e0076273b84e4263f429971 /generic | |
parent | bd2c56d7039122dcb51ef36f39766e245c84d821 (diff) | |
download | tcl-cc240f86c997bfabb858ee9cac79fe0eee309355.zip tcl-cc240f86c997bfabb858ee9cac79fe0eee309355.tar.gz tcl-cc240f86c997bfabb858ee9cac79fe0eee309355.tar.bz2 |
* generic/tclIOUtil.c (Tcl_LoadFile): Corrections to previous commit
* unix/tclLoadDyld.c (TclpDlopen): to make it build on OSX.
Also add missing ChangeLog entry for previous commit by KBK.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclIOUtil.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index c1e9430..f4dac35 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -17,7 +17,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOUtil.c,v 1.171 2010/04/02 21:21:06 kennykb Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.172 2010/04/02 22:52:26 dkf Exp $ */ #include "tclInt.h" @@ -3126,7 +3126,6 @@ Tcl_LoadFile( ret = TclpLoadMemory(interp, buffer, size, ret, handlePtr, &unloadProcPtr); if (ret == TCL_OK && *handlePtr != NULL) { - *clientDataPtr = *handlePtr; goto resolveSymbols; } } |