mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
Avoid boolean coercion in tst-tls-atexit test case
This commit is contained in:
parent
1aa8d144f9
commit
962a1aeb28
@ -1,3 +1,7 @@
|
||||
2015-07-10 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||
|
||||
* stdlib/tst-tls-atexit.c (load): Avoid boolean coercion.
|
||||
|
||||
2015-07-10 Torvald Riegel <triegel@redhat.com>
|
||||
|
||||
* nptl/sem_waitcommon.c (__new_sem_wait_slow): Update comments.
|
||||
|
@ -36,7 +36,7 @@ load (void *u)
|
||||
{
|
||||
pthread_mutex_lock (&m);
|
||||
handle = dlopen ("$ORIGIN/tst-tls-atexit-lib.so", RTLD_LAZY);
|
||||
if (!handle)
|
||||
if (handle == NULL)
|
||||
{
|
||||
printf ("Unable to load DSO: %s\n", dlerror ());
|
||||
return (void *) (uintptr_t) 1;
|
||||
@ -44,7 +44,7 @@ load (void *u)
|
||||
|
||||
void (*foo) (void) = (void (*) (void)) dlsym(handle, "do_foo");
|
||||
|
||||
if (!foo)
|
||||
if (foo == NULL)
|
||||
{
|
||||
printf ("Unable to find symbol: %s\n", dlerror ());
|
||||
exit (1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user