hc
2024-05-10 23fa18eaa71266feff7ba8d83022d9e1cc83c65a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
From c6934455ec2337e6da7ea9fbc3486ce9beeb5d82 Mon Sep 17 00:00:00 2001
From: OpenEmbedded <oe.patch@oe>
Date: Wed, 11 Apr 2018 22:51:05 +0200
Subject: [PATCH] x86-linux-setup.c: replace vfscanf() with vsscanf()
 
klibc lacks vfscanf()
 
Upstream-Status: Inappropriate [klibc specific]
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
 
---
 kexec/arch/i386/x86-linux-setup.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)
 
diff --git a/kexec/arch/i386/x86-linux-setup.c b/kexec/arch/i386/x86-linux-setup.c
index 5514c1c..bdb28c6 100644
--- a/kexec/arch/i386/x86-linux-setup.c
+++ b/kexec/arch/i386/x86-linux-setup.c
@@ -200,6 +200,8 @@ static int file_scanf(const char *dir, const char *file, const char *scanf_line,
     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;
@@ -210,7 +212,14 @@ static int file_scanf(const char *dir, const char *file, const char *scanf_line,
     }
 
     va_start(argptr, scanf_line);
-    retno = vfscanf(fp, scanf_line, argptr);
+
+    line = xmalloc(sizeof(line) * line_size);
+    while(fgets(line, sizeof(line), fp) != NULL ) {
+        line_size += MAX_LINE;
+        line = xrealloc(line,line_size);
+    }
+    retno = vsscanf(line, scanf_line, argptr);
+
     va_end(argptr);
 
     fclose(fp);