[Pkg-shadow-devel] [pkg-shadow-Bugs][313942] new_line gets truncated in merge_group_entries
pkg-shadow-bugs at alioth.debian.org
pkg-shadow-bugs at alioth.debian.org
Tue Dec 25 21:54:44 UTC 2012
pkg-shadow-Bugs item #313942, was opened at 2012-12-26 07:54 by Brad Hubbard
You can respond by visiting:
https://alioth.debian.org/tracker/?func=detail&atid=411478&aid=313942&group_id=30580
Status: Open
Priority: 3
Submitted By: Brad Hubbard (badone-guest)
Assigned to: Nobody (None)
Summary: new_line gets truncated in merge_group_entries
Category: None
Group: None
Resolution: None
Initial Comment:
In the following code allowance is made for the terminating NULL in new_line_len but not the newline char that is added when the two lines are concatenated. The result is new_line ends up one character short.
314 /* Concatenate the 2 lines */
315 new_line_len = strlen (gr1->line) + strlen (gr2->line) +1;
316 new_line = (char *)malloc ((new_line_len + 1) * sizeof(char*));
317 if (NULL == new_line) {
318 errno = ENOMEM;
319 return NULL;
320 }
321 snprintf(new_line, new_line_len, "%s\n%s", gr1->line, gr2->line);
322 new_line[new_line_len] = '\0';
Patch attached.
----------------------------------------------------------------------
You can respond by visiting:
https://alioth.debian.org/tracker/?func=detail&atid=411478&aid=313942&group_id=30580
More information about the Pkg-shadow-devel
mailing list