* dbxread.c (read_dbx_symtab): Avoid compiler warnings for

sym_name.
	* infcall.c (find_function_addr): Avoid compiler warnings for
	funaddr.
This commit is contained in:
Eli Zaretskii 2009-05-02 09:41:52 +00:00
parent 80f61e9b05
commit 87bc73eacf
2 changed files with 2 additions and 0 deletions

View 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);

View 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;