* gdb/ada-lang.c (standard_lookup): Prevent uninitialized variable
authorMatthew Gretton-Dann <matthew.gretton-dann@arm.com>
Thu, 31 May 2012 09:34:40 +0000 (09:34 +0000)
committerMatthew Gretton-Dann <matthew.gretton-dann@arm.com>
Thu, 31 May 2012 09:34:40 +0000 (09:34 +0000)
warning.

gdb/ChangeLog
gdb/ada-lang.c

index 8a1b27e..c09c954 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-31  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
+
+       * ada-lang.c (standard_lookup): Prevent uninitialized variable
+       warning.
+
 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
 
        * configure.host (gdb_host_cpu): Handle tilegx*.
index 1fac316..af0fdb5 100644 (file)
@@ -4256,7 +4256,8 @@ static struct symbol *
 standard_lookup (const char *name, const struct block *block,
                  domain_enum domain)
 {
-  struct symbol *sym;
+  /* Initialize it just to avoid a GCC false warning.  */
+  struct symbol *sym = NULL;
 
   if (lookup_cached_symbol (name, domain, &sym, NULL))
     return sym;