aboutsummaryrefslogtreecommitdiff
path: root/libiberty/testsuite/test-demangle.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/testsuite/test-demangle.c')
-rw-r--r--libiberty/testsuite/test-demangle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/testsuite/test-demangle.c b/libiberty/testsuite/test-demangle.c
index 82f263e88af..6e5d0b4b973 100644
--- a/libiberty/testsuite/test-demangle.c
+++ b/libiberty/testsuite/test-demangle.c
@@ -65,7 +65,7 @@ getline(buf)
line: copy this line into the buffer and return. */
while (c != EOF && c != '\n')
{
- if (count >= alloc)
+ if (count + 1 >= alloc)
{
alloc *= 2;
data = xrealloc (data, alloc);