OSDN Git Service

* dbxread.c (read_dbx_symtab): Avoid compiler warnings for
authoreliz <eliz>
Sat, 2 May 2009 09:41:52 +0000 (09:41 +0000)
committereliz <eliz>
Sat, 2 May 2009 09:41:52 +0000 (09:41 +0000)
sym_name.
* infcall.c (find_function_addr): Avoid compiler warnings for
funaddr.

gdb/dbxread.c
gdb/infcall.c

index d520266..be73769 100644 (file)
@@ -1684,6 +1684,7 @@ pos %d"),
            continue;                   /* Not a debugging symbol.   */
 
          sym_len = 0;
+         sym_name = NULL;      /* pacify "gcc -Werror" */
          if (psymtab_language == language_cplus)
            {
              char *new_name, *name = alloca (p - namestring + 1);
index 16b4320..898e575 100644 (file)
@@ -243,6 +243,7 @@ find_function_addr (struct value *function, struct type **retval_type)
        {
          /* Handle function descriptors lacking debug info.  */
          int found_descriptor = 0;
+         funaddr = 0;  /* pacify "gcc -Werror" */
          if (VALUE_LVAL (function) == lval_memory)
            {
              CORE_ADDR nfunaddr;