]> granicus.if.org Git - shadow/commitdiff
add newline char when two lines are concatenated
authorBrad Hubbard <badone-guest@alioth.debian.org>
Mon, 29 Jul 2013 08:05:52 +0000 (10:05 +0200)
committerbubulle <bubulle@debian.org>
Mon, 29 Jul 2013 08:05:52 +0000 (10:05 +0200)
ChangeLog
lib/groupio.c

index 266112a704ac2a0f33d5593d71f07dad219305c4..bcb07fbe3dc9948464dbd5ceb8c30a4b187758e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-07-29  Brad Hubbard  <badone-guest@alioth.debian.org>
+
+        * lib/groupio.c: add newline char when two lines
+          are concatenated
+         Closes: alioth#313942
+
 2013-07-28  Guido Trentalancia  <guido@trentalancia.com>
 
         * etc/login.defs: fix typographic errors and use a better format
index 109c5886a30988442d4e378d050576193d4133e9..244307fcc72c87f14db2aaf85e36c0151c820929 100644 (file)
@@ -329,7 +329,7 @@ static /*@null@*/struct commonio_entry *merge_group_entries (
        }
 
        /* Concatenate the 2 lines */
-       new_line_len = strlen (gr1->line) + strlen (gr2->line) +1;
+       new_line_len = strlen (gr1->line) + strlen (gr2->line) +2;
        new_line = (char *)malloc ((new_line_len + 1) * sizeof(char*));
        if (NULL == new_line) {
                errno = ENOMEM;