mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-09-04 00:05:30 +00:00
Remove infinite loop in token_print_indent_concat().
This commit is contained in:
2
RELNOTES
2
RELNOTES
@@ -51,6 +51,8 @@ work on other platforms. Please report any problems and suggested fixes to
|
|||||||
|
|
||||||
Changes since 4.1.0 (bug fixes)
|
Changes since 4.1.0 (bug fixes)
|
||||||
|
|
||||||
|
- Remove infinite loop in token_print_indent_concat().
|
||||||
|
|
||||||
- Validate the argument to the -p option.
|
- Validate the argument to the -p option.
|
||||||
|
|
||||||
- The notorious 'option <unknown> ... larger than buffer' log line,
|
- The notorious 'option <unknown> ... larger than buffer' log line,
|
||||||
|
@@ -1108,6 +1108,7 @@ int token_print_indent_concat (FILE *file, int col, int indent,
|
|||||||
len = strlen (s);
|
len = strlen (s);
|
||||||
strcpy (u, s);
|
strcpy (u, s);
|
||||||
u += len;
|
u += len;
|
||||||
|
s = va_arg (list, char *);
|
||||||
}
|
}
|
||||||
va_end (list);
|
va_end (list);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user