Index: http_digest.c
===================================================================
RCS file: /cvsroot/curl/curl/lib/http_digest.c,v
retrieving revision 1.49
diff -u -r1.49 http_digest.c
--- http_digest.c	21 Apr 2009 11:46:17 -0000	1.49
+++ http_digest.c	9 May 2009 01:40:37 -0000
@@ -544,7 +544,7 @@
   }
 
   /* append CRLF to the userpwd header */
-  tmp = realloc(*allocuserpwd, strlen(*allocuserpwd) + 3 + 1);
+  tmp = realloc(*allocuserpwd, strlen(*allocuserpwd) + 3);
   if(!tmp)
     return CURLE_OUT_OF_MEMORY;
   strcat(tmp, "\r\n");


