From 9331ebe1c41796a4342a4c06dc349a52b73f29ac Mon Sep 17 00:00:00 2001 From: msnyder Date: Wed, 1 Aug 2007 19:43:08 +0000 Subject: [PATCH] 2007-07-31 Michael Snyder * cp-demangle.c (d_print_comp): Guard against null. --- libiberty/ChangeLog | 4 ++++ libiberty/cp-demangle.c | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index c1ef6d12ec..aee3cc76f5 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2007-07-31 Michael Snyder + + * cp-demangle.c (d_print_comp): Guard against null. + 2007-07-25 Ben Elliston * Makefile.in (CFILES): Remove ternary.c. diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c index 992b3580bf..e4869f029d 100644 --- a/libiberty/cp-demangle.c +++ b/libiberty/cp-demangle.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) -- 2.11.0