diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-15 14:37:59 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-15 14:37:59 +0000 |
commit | 3176366da22e732b60b516b279236f92e96c3c3a (patch) | |
tree | 6e76a490f44ed7ab9e734dfc08195092de8e264a /ldso | |
parent | 82a975f2f2671f0fb54ccc56d3cc621dad8b645b (diff) |
For now, revert Ronald Wahl's change to dlopen. We need to
look into what is breaking dlclose() further...
-Erik
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/libdl/dlib.c | 2 | ||||
-rw-r--r-- | ldso/libdl/libdl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ldso/libdl/dlib.c b/ldso/libdl/dlib.c index 6008f8c84..a0d3ec805 100644 --- a/ldso/libdl/dlib.c +++ b/ldso/libdl/dlib.c @@ -149,7 +149,7 @@ void *_dlopen(const char *libname, int flag) #endif return NULL; } - tpnt->libtype = loaded_file; + //tpnt->libtype = loaded_file; dyn_chain = rpnt = (struct dyn_elf *) malloc(sizeof(struct dyn_elf)); _dl_memset(rpnt, 0, sizeof(*rpnt)); diff --git a/ldso/libdl/libdl.c b/ldso/libdl/libdl.c index 6008f8c84..a0d3ec805 100644 --- a/ldso/libdl/libdl.c +++ b/ldso/libdl/libdl.c @@ -149,7 +149,7 @@ void *_dlopen(const char *libname, int flag) #endif return NULL; } - tpnt->libtype = loaded_file; + //tpnt->libtype = loaded_file; dyn_chain = rpnt = (struct dyn_elf *) malloc(sizeof(struct dyn_elf)); _dl_memset(rpnt, 0, sizeof(*rpnt)); |