From: Florian Westphal Date: Sun, 28 Aug 2005 11:47:02 +0000 (+0000) Subject: array_cat0_temporary(): removed confusing DEBUG messages X-Git-Tag: rel-0-10-0-pre1~105 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21ad5dcfffa492a949a832fa1631242f4bad7a7a;p=ngircd.git array_cat0_temporary(): removed confusing DEBUG messages --- diff --git a/src/ngircd/array.c b/src/ngircd/array.c index bbff5a14..cbfdcd85 100644 --- a/src/ngircd/array.c +++ b/src/ngircd/array.c @@ -12,7 +12,7 @@ #include "array.h" -static char UNUSED id[] = "$Id: array.c,v 1.5 2005/07/28 16:12:50 fw Exp $"; +static char UNUSED id[] = "$Id: array.c,v 1.6 2005/08/28 11:47:02 fw Exp $"; #include @@ -235,11 +235,11 @@ array_cat0(array * a) bool array_cat0_temporary(array * a) { - unsigned int len = array_bytes(a); - if (!array_catb(a, "", 1)) + char *endpos = array_alloc(a, 1, array_bytes(len)); + if (!endpos) return false; - array_truncate(a, 1, len); + *endpos = '\0'; return true; }