From ffe7cfdf3170254a6bc8c5f5e9f946005b923165 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Sun, 10 Jan 2010 01:19:02 +0000 Subject: [PATCH] Return dgs.alc on success 2010-01-09 Ian Lance Taylor PR other/42230 * cp-demangle.c (d_demangle): Return dgs.alc on success. --- libiberty/ChangeLog | 5 +++++ libiberty/cp-demangle.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index c3d8f196b2..effb327ea2 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2010-01-09 Ian Lance Taylor + + PR other/42230 + * cp-demangle.c (d_demangle): Return dgs.alc on success. + 2010-01-04 Nobuhiro Iwamatsu PR target/42316 diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c index 43cf34a36c..d37c90efc2 100644 --- a/libiberty/cp-demangle.c +++ b/libiberty/cp-demangle.c @@ -4777,7 +4777,7 @@ d_demangle (const char *mangled, int options, size_t *palc) return NULL; } - *palc = dgs.allocation_failure ? 1 : 0; + *palc = dgs.allocation_failure ? 1 : dgs.alc; return dgs.buf; }