2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 14:25:41 +00:00

Remove infinite loop in token_print_indent_concat().

This commit is contained in:
Mark Andrews
2009-04-30 06:30:27 +00:00
parent dedde1ba35
commit 62f6843db6
2 changed files with 3 additions and 0 deletions

View File

@@ -51,6 +51,8 @@ work on other platforms. Please report any problems and suggested fixes to
Changes since 4.1.0 (bug fixes)
- Remove infinite loop in token_print_indent_concat().
- Validate the argument to the -p option.
- The notorious 'option <unknown> ... larger than buffer' log line,

View File

@@ -1108,6 +1108,7 @@ int token_print_indent_concat (FILE *file, int col, int indent,
len = strlen (s);
strcpy (u, s);
u += len;
s = va_arg (list, char *);
}
va_end (list);