projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
97507bd
)
don't leave the lock held on dlopen failure..
author
Rich Felker
<dalias@aerifal.cx>
Mon, 27 Jun 2011 02:09:32 +0000
(22:09 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Mon, 27 Jun 2011 02:09:32 +0000
(22:09 -0400)
src/ldso/dynlink.c
patch
|
blob
|
history
diff --git
a/src/ldso/dynlink.c
b/src/ldso/dynlink.c
index 1cab8d125185ff8e518e0865b3a2ffd811371c01..62dd9db78a5306089c6a09880b14ec58feeca41c 100644
(file)
--- a/
src/ldso/dynlink.c
+++ b/
src/ldso/dynlink.c
@@
-509,7
+509,7
@@
void *dlopen(const char *file, int mode)
}
p = load_library(file);
- if (!p)
return 0
;
+ if (!p)
goto end
;
/* First load handling */
if (!p->deps) {
@@
-531,8
+531,8
@@
void *dlopen(const char *file, int mode)
p->global = 1;
}
+end:
pthread_rwlock_unlock(&lock);
-
return p;
}