From ef0b354c32e7c16555f803999a9ffc175d66a151 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Tue, 27 Sep 2005 15:21:13 +0000 Subject: * argv.c (expandargv): Do not use xmalloc_failed. --- libiberty/argv.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'libiberty/argv.c') diff --git a/libiberty/argv.c b/libiberty/argv.c index 71f164acf7..79241b6dce 100644 --- a/libiberty/argv.c +++ b/libiberty/argv.c @@ -365,9 +365,10 @@ expandargv (argcp, argvp) { *argvp = dupargv (*argvp); if (!*argvp) - /* We do not know exactly many bytes dupargv tried to - allocate, so make a guess. */ - xmalloc_failed (*argcp * 32); + { + fputs ("\nout of memory\n", stderr); + xexit (1); + } } /* Count the number of arguments. */ file_argc = 0; -- cgit v1.2.1