2007-07-31 Michael Snyder <msnyder@access-company.com>
* cp-demangle.c (d_print_comp): Guard against null.
This commit is contained in:
parent
43ec5bc0d7
commit
168b82983a
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2007-07-31 Michael Snyder <msnyder@access-company.com>
|
||||
|
||||
* cp-demangle.c (d_print_comp): Guard against null.
|
||||
|
||||
2007-07-25 Ben Elliston <bje@au.ibm.com>
|
||||
|
||||
* Makefile.in (CFILES): Remove ternary.c.
|
||||
|
|
|
@ -2912,6 +2912,12 @@ d_print_comp (struct d_print_info *dpi,
|
|||
typed_name = d_left (typed_name);
|
||||
}
|
||||
|
||||
if (typed_name == NULL)
|
||||
{
|
||||
d_print_error (dpi);
|
||||
return;
|
||||
}
|
||||
|
||||
/* If typed_name is a template, then it applies to the
|
||||
function type as well. */
|
||||
if (typed_name->type == DEMANGLE_COMPONENT_TEMPLATE)
|
||||
|
|
Loading…
Add table
Reference in a new issue