diff options
Diffstat (limited to 'binutils/stabs.c')
-rw-r--r-- | binutils/stabs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/binutils/stabs.c b/binutils/stabs.c index 52a20e8..42763e7 100644 --- a/binutils/stabs.c +++ b/binutils/stabs.c @@ -4321,7 +4321,8 @@ stab_demangle_template (struct stab_demangle_info *minfo, const char **pp, { unsigned int len; - if (! stab_demangle_get_count (pp, &len)) + len = stab_demangle_count (pp); + if (len == 0) { stab_bad_demangle (orig); return FALSE; |