parent
c0ce911b5e
commit
5d491ef9da
@ -1,3 +1,8 @@
|
||||
2013-08-05 Nicolas François <nicolas.francois@centraliens.net>
|
||||
|
||||
* lib/groupio.c: Revert change from 2013-07-29. The length of the
|
||||
concatenated 2 lines was correct.
|
||||
|
||||
2013-08-05 Nicolas François <nicolas.francois@centraliens.net>
|
||||
|
||||
* libmisc/salt.c: random() max value is 2^31-1 (same as RAND_MAX
|
||||
|
@ -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) +2;
|
||||
new_line_len = strlen (gr1->line) + strlen (gr2->line) +1;
|
||||
new_line = (char *)malloc (new_line_len + 1);
|
||||
if (NULL == new_line) {
|
||||
errno = ENOMEM;
|
||||
|
Loading…
Reference in New Issue
Block a user