9
0
Fork 0

Fix buffer overflow problem in ft_build.c

Patch by Fredrik Roubert, 09 Oct 2006
This commit is contained in:
Wolfgang Denk 2006-10-09 12:50:41 +02:00
parent d82718fed0
commit d262a92f0f
2 changed files with 6 additions and 1 deletions

View File

@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4:
======================================================================
* Fix buffer overflow problem in ft_build.c
Patch by Fredrik Roubert, 09 Oct 2006
* Make bootp implementation RFC3046 compliant
Patch by Joakim Larsson, 27 Jun 2006

View File

@ -293,7 +293,9 @@ static void print_data(const void *data, int len)
return;
if (is_printable_string(data, len)) {
printf(" = \"%s\"", (char *)data);
puts(" = \"");
puts(data);
puts("\"");
return;
}