* init.c (__pthread_initialize_minimal): Initialize word to appease
authorJakub Jelinek <jakub@redhat.com>
Mon, 15 Oct 2007 20:25:25 +0000 (20:25 +0000)
committerJakub Jelinek <jakub@redhat.com>
Mon, 15 Oct 2007 20:25:25 +0000 (20:25 +0000)
valgrind.
2007-10-15  Jakub Jelinek  <jakub@redhat.com>

* init.c (__pthread_initialize_minimal): Initialize word to appease
valgrind.

nptl/ChangeLog
nptl/init.c

index b7c03dc..85edbbe 100644 (file)
@@ -1,3 +1,8 @@
+2007-10-15  Jakub Jelinek  <jakub@redhat.com>
+
+       * init.c (__pthread_initialize_minimal): Initialize word to appease
+       valgrind.
+
 2007-10-10  Jakub Jelinek  <jakub@redhat.com>
 
        * sysdeps/pthread/bits/libc-lock.h (__libc_rwlock_init): Inside of
index ffb50b4..d445de0 100644 (file)
@@ -284,7 +284,7 @@ __pthread_initialize_minimal_internal (void)
   /* Private futexes are always used (at least internally) so that
      doing the test once this early is beneficial.  */
   {
-    int word;
+    int word = 0;
     word = INTERNAL_SYSCALL (futex, err, 3, &word,
                            FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1);
     if (!INTERNAL_SYSCALL_ERROR_P (word, err))