2007-07-31 Michael Snyder <msnyder@access-company.com>

* cp-demangle.c (d_print_comp): Guard against null.
This commit is contained in:
Michael Snyder 2007-08-01 19:43:08 +00:00
parent 43ec5bc0d7
commit 168b82983a
2 changed files with 10 additions and 0 deletions

View file

@ -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.

View file

@ -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)