* symtab.c (lookup_language_this): End loop if block is NULL.
This commit is contained in:
parent
185e39cdbd
commit
03de682319
@ -1,3 +1,7 @@
|
||||
2011-06-20 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* symtab.c (lookup_language_this): End loop if block is NULL.
|
||||
|
||||
2011-06-17 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* valops.c (value_of_this): Use lookup_language_this.
|
||||
|
@ -1100,7 +1100,7 @@ lookup_language_this (const struct language_defn *lang,
|
||||
if (lang->la_name_of_this == NULL || block == NULL)
|
||||
return NULL;
|
||||
|
||||
while (1)
|
||||
while (block)
|
||||
{
|
||||
struct symbol *sym;
|
||||
|
||||
@ -1108,9 +1108,11 @@ lookup_language_this (const struct language_defn *lang,
|
||||
if (sym != NULL)
|
||||
return sym;
|
||||
if (BLOCK_FUNCTION (block))
|
||||
return NULL;
|
||||
break;
|
||||
block = BLOCK_SUPERBLOCK (block);
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* Behave like lookup_symbol except that NAME is the natural name
|
||||
|
Loading…
Reference in New Issue
Block a user