repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 21ad5dcfffa492a949a832fa1631242f4bad7a7a:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 21ad5dcfffa492a949a832fa1631242f4bad7a7a
Author: Florian Westphal 
Date:   Sun Aug 28 11:47:02 2005 +0000

    array_cat0_temporary(): removed confusing DEBUG messages

diff --git a/src/ngircd/array.c b/src/ngircd/array.c
index bbff5a145c937fa125fd507a563890495662c43d..
index ..cbfdcd85240b4853287f6d9058d2cdda35280372 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;
 }

-----END OF PAGE-----