mirror of git://git.musl-libc.org/musl
don't leave the lock held on dlopen failure..
This commit is contained in:
parent
97507bde47
commit
06933cc724
|
@ -509,7 +509,7 @@ void *dlopen(const char *file, int mode)
|
||||||
}
|
}
|
||||||
|
|
||||||
p = load_library(file);
|
p = load_library(file);
|
||||||
if (!p) return 0;
|
if (!p) goto end;
|
||||||
|
|
||||||
/* First load handling */
|
/* First load handling */
|
||||||
if (!p->deps) {
|
if (!p->deps) {
|
||||||
|
@ -531,8 +531,8 @@ void *dlopen(const char *file, int mode)
|
||||||
p->global = 1;
|
p->global = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
end:
|
||||||
pthread_rwlock_unlock(&lock);
|
pthread_rwlock_unlock(&lock);
|
||||||
|
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue