[dovecot-cvs] dovecot/src/lib strfuncs.c,1.35,1.36

cras at procontrol.fi cras at procontrol.fi
Mon Oct 20 08:53:25 EEST 2003


Update of /home/cvs/dovecot/src/lib
In directory danu:/tmp/cvs-serv25559/lib

Modified Files:
	strfuncs.c 
Log Message:
*_strconcat() bugfix



Index: strfuncs.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib/strfuncs.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- strfuncs.c	20 Oct 2003 04:15:17 -0000	1.35
+++ strfuncs.c	20 Oct 2003 04:53:23 -0000	1.36
@@ -238,7 +238,7 @@
 			temp = t_buffer_reget(temp, bufsize);
 		}
 
-		memcpy(temp + i, str, len);
+		memcpy(temp + i, str, len); i += len;
 
 		/* next string */
 		str = va_arg(args, const char *);



More information about the dovecot-cvs mailing list