diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-01-20 18:00:16 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-01-20 18:00:16 +0000 |
commit | 4c1038a2b69f88db35b8cfedb429a86b7f819078 (patch) | |
tree | ac32314a3a3e6cd26a10da676ca9f7a4b88fc38d /ldso/libdl/libdl.c | |
parent | 4401cfb819df129c749a9408762a8152e3faaa7d (diff) |
As noted by Doru Petrescu, there was a spurious line that was using
_dl_debug_addr prior to checking if it was NULL.
Diffstat (limited to 'ldso/libdl/libdl.c')
-rw-r--r-- | ldso/libdl/libdl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ldso/libdl/libdl.c b/ldso/libdl/libdl.c index ebd7b85b8..b116590fe 100644 --- a/ldso/libdl/libdl.c +++ b/ldso/libdl/libdl.c @@ -288,7 +288,6 @@ void *_dlopen(const char *libname, int flag) /* Notify the debugger we have added some objects. */ - _dl_debug_addr->r_state = RT_ADD; if (_dl_debug_addr) { dl_brk = (void (*)(void)) _dl_debug_addr->r_brk; if (dl_brk != NULL) { |