diff options
author | hobbs <hobbs> | 2005-10-05 04:23:55 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-10-05 04:23:55 (GMT) |
commit | f44618e215055db10c70056086d2727efd012169 (patch) | |
tree | 57e83616cdaf276ceac7e326c9499e1b30a75c17 /unix | |
parent | f842c348fa18ff9615817083da3d5d068339c6b2 (diff) | |
download | tcl-f44618e215055db10c70056086d2727efd012169.zip tcl-f44618e215055db10c70056086d2727efd012169.tar.gz tcl-f44618e215055db10c70056086d2727efd012169.tar.bz2 |
* unix/tclLoadShl.c (TclpDlopen): use DYNAMIC_PATH on second
shl_load only. [Bug 1204237]
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclLoadShl.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/unix/tclLoadShl.c b/unix/tclLoadShl.c index 60919a7..693e0fd 100644 --- a/unix/tclLoadShl.c +++ b/unix/tclLoadShl.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclLoadShl.c,v 1.13 2002/10/10 12:25:53 vincentdarley Exp $ + * RCS: @(#) $Id: tclLoadShl.c,v 1.13.2.1 2005/10/05 04:23:56 hobbs Exp $ */ #include <dl.h> @@ -71,17 +71,16 @@ TclpDlopen(interp, pathPtr, loadHandle, unloadProcPtr) */ - /* + /* * First try the full path the user gave us. This is particularly * important if the cwd is inside a vfs, and we are trying to load * using a relative path. */ native = Tcl_FSGetNativePath(pathPtr); - handle = shl_load(native, - BIND_DEFERRED|BIND_VERBOSE|DYNAMIC_PATH, 0L); - + handle = shl_load(native, BIND_DEFERRED|BIND_VERBOSE, 0L); + if (handle == NULL) { - /* + /* * Let the OS loader examine the binary search path for * whatever string the user gave us which hopefully refers * to a file on the binary path |