diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-03-10 06:32:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-03-10 06:32:33 +0000 |
commit | 719404ef2e29b2240da9c63c525a9493f9bf764a (patch) | |
tree | d5c5efbb22338d34bf11f14d628cb5b62d5c5483 /dlfcn/tstatexit.c | |
parent | 9672b9372f7943f1a8a9d6c32c862459551985eb (diff) | |
download | glibc-719404ef2e29b2240da9c63c525a9493f9bf764a.tar glibc-719404ef2e29b2240da9c63c525a9493f9bf764a.tar.gz glibc-719404ef2e29b2240da9c63c525a9493f9bf764a.tar.bz2 glibc-719404ef2e29b2240da9c63c525a9493f9bf764a.zip |
(main): Don't perform the test if __dso_handle is not available.
Diffstat (limited to 'dlfcn/tstatexit.c')
-rw-r--r-- | dlfcn/tstatexit.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dlfcn/tstatexit.c b/dlfcn/tstatexit.c index e3dfe4bd08..58bc8a02c0 100644 --- a/dlfcn/tstatexit.c +++ b/dlfcn/tstatexit.c @@ -21,6 +21,8 @@ #include <stdlib.h> +extern void *__dso_handle __attribute__ ((__weak__)); + int main (void) { @@ -29,6 +31,12 @@ main (void) void (*fp) (void *); int v = 0; + if (&__dso_handle == NULL) + { + puts ("__dso_handle not available, cannot perform the test"); + exit (0); + } + h = dlopen (fname, RTLD_NOW); if (h == NULL) { |