diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | dlfcn/failtestmod.c | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2014-11-27 Joseph Myers <joseph@codesourcery.com> + + * dlfcn/failtestmod.c (constr): Do not store result of dlsym in a + variable. + 2014-11-27 Stefan Liebler <stli@linux.vnet.ibm.com> * nscd/connections.c: Include libc-internal.h because of macro diff --git a/dlfcn/failtestmod.c b/dlfcn/failtestmod.c index a03f90b..64dadd5 100644 --- a/dlfcn/failtestmod.c +++ b/dlfcn/failtestmod.c @@ -8,7 +8,6 @@ __attribute__ ((__constructor__)) constr (void) { void *handle; - void *m; /* Open the library. */ handle = dlopen (NULL, RTLD_NOW); @@ -19,7 +18,7 @@ constr (void) } /* Get a symbol. */ - m = dlsym (handle, "main"); + dlsym (handle, "main"); puts ("called dlsym() to get main"); dlclose (handle); |