mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
97957e5cee
* some old patches apparently unneeded have been removed * patches are now better split * fix build for x86 and x86-64 * tested with qemuarm, qemuppc, qemumips, qemux86, qemux86-64 Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
28 lines
701 B
Diff
28 lines
701 B
Diff
--- a/kexec/arch/i386/x86-linux-setup.c
|
|
+++ b/kexec/arch/i386/x86-linux-setup.c
|
|
@@ -176,6 +176,8 @@ static int file_scanf(const char *dir, c
|
|
FILE *fp;
|
|
int retno;
|
|
char filename[PATH_MAX];
|
|
+ long line_size = MAX_LINE;
|
|
+ char *line;
|
|
|
|
snprintf(filename, PATH_MAX, "%s/%s", dir, file);
|
|
filename[PATH_MAX-1] = 0;
|
|
@@ -186,7 +188,14 @@ static int file_scanf(const char *dir, c
|
|
}
|
|
|
|
va_start(argptr, scanf_line);
|
|
- retno = vfscanf(fp, scanf_line, argptr);
|
|
+
|
|
+ line = xmalloc(sizeof(line) * line_size);
|
|
+ while(fgets(line, sizeof(line), fp) != 0 ) {
|
|
+ line_size += MAX_LINE;
|
|
+ line = xrealloc(line,line_size);
|
|
+ }
|
|
+ retno = vsscanf(line, scanf_line, argptr);
|
|
+
|
|
va_end(argptr);
|
|
|
|
fclose(fp);
|