* gdb/ada-lang.c (standard_lookup): Prevent uninitialized variable
[deliverable/binutils-gdb.git] / gdb / ada-lang.c
index 1fac31656fe1397099fb8719010b89889038a899..af0fdb5e53f6d4beaed589becaeedcbe4a8ed930 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;
This page took 0.026888 seconds and 4 git commands to generate.