lf_to_crlf(): NUL-terminate msg_data::data
authorMichael Haggerty <mhagger@alum.mit.edu>
Sun, 25 Nov 2012 11:08:36 +0000 (12:08 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 26 Nov 2012 21:32:06 +0000 (13:32 -0800)
Through the rest of the file, the data member of struct msg_data is
kept NUL-terminated, and that fact is relied upon in a couple of
places.  Change lf_to_crlf() to preserve this invariant.

In fact, there are no execution paths in which lf_to_crlf() is called
and then its data member is required to be NUL-terminated, but it is
better to be consistent to prevent future confusion.

Document the invariant in the struct msg_data definition.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
imap-send.c

index d42e4712972794f055aec6630ba86797d7e5343c..c818b0c7ea226599d43f2611d77a88acf308df1d 100644 (file)
@@ -69,8 +69,12 @@ struct store {
 };
 
 struct msg_data {
+       /* NUL-terminated data: */
        char *data;
+
+       /* length of data (not including NUL): */
        int len;
+
        unsigned char flags;
 };
 
@@ -1276,7 +1280,7 @@ static void lf_to_crlf(struct msg_data *msg)
                        lfnum++;
        }
 
-       new = xmalloc(msg->len + lfnum);
+       new = xmalloc(msg->len + lfnum + 1);
        if (msg->data[0] == '\n') {
                new[0] = '\r';
                new[1] = '\n';
@@ -1297,6 +1301,7 @@ static void lf_to_crlf(struct msg_data *msg)
                /* otherwise it already had CR before */
                new[j++] = '\n';
        }
+       new[j] = '\0';
        msg->len += lfnum;
        free(msg->data);
        msg->data = new;