linux-tdep.c: Fix "warning: 'siginfo_size' may be used uninitialized..."
authorMaciej W. Rozycki <macro@codesourcery.com>
Wed, 30 Oct 2013 01:05:18 +0000 (01:05 +0000)
committerMaciej W. Rozycki <macro@codesourcery.com>
Wed, 30 Oct 2013 01:05:18 +0000 (01:05 +0000)
* linux-tdep.c (linux_corefile_thread_callback): Preinitialize
siginfo_size.

gdb/ChangeLog
gdb/linux-tdep.c

index daceab8..bcad7a4 100644 (file)
@@ -1,3 +1,8 @@
+2013-10-30  Maciej W. Rozycki  <macro@codesourcery.com>
+
+       * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
+       siginfo_size.
+
 2013-10-29  Tom Tromey  <tromey@redhat.com>
 
        * utils.c (reg): Move undefinition...
index 304fe09..90b763f 100644 (file)
@@ -1193,7 +1193,7 @@ linux_corefile_thread_callback (struct thread_info *info, void *data)
       struct cleanup *old_chain;
       struct regcache *regcache;
       gdb_byte *siginfo_data;
-      LONGEST siginfo_size;
+      LONGEST siginfo_size = 0;
 
       regcache = get_thread_arch_regcache (info->ptid, args->gdbarch);