Skip to content
Snippets Groups Projects
Commit d262a92f authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Fix buffer overflow problem in ft_build.c

Patch by Fredrik Roubert, 09 Oct 2006
parent d82718fe
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment