From d61f38badd7a3f5f4ca7a0d17aa81e081d81dd49 Mon Sep 17 00:00:00 2001 From: bigbear Date: Thu, 8 Feb 2024 04:38:31 +0100 Subject: FIX QLcode - sscanf incorrect check --- modules/benchmark/bench_results.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/benchmark') diff --git a/modules/benchmark/bench_results.c b/modules/benchmark/bench_results.c index 42930d74..18ed0739 100644 --- a/modules/benchmark/bench_results.c +++ b/modules/benchmark/bench_results.c @@ -71,7 +71,7 @@ static char *cpu_config_retranslate(char *str, int force_en, int replacing) if (str != NULL) { new_str = strdup(""); if (strchr(str, 'x')) { - while (c != NULL && sscanf(c, "%dx %f", &t, &f)) { + while (c != NULL && (sscanf(c, "%dx %f", &t, &f)==2)) { tmp = g_strdup_printf("%s%s%dx %.2f %s", new_str, strlen(new_str) ? " + " : "", t, f, mhz); free(new_str); @@ -103,7 +103,7 @@ static float cpu_config_val(char *str) float f, r = 0.0; if (str != NULL) { if (strchr(str, 'x')) { - while (c != NULL && sscanf(c, "%dx %f", &t, &f)) { + while (c != NULL && (sscanf(c, "%dx %f", &t, &f)==2)) { r += f * t; c = strchr(c + 1, '+'); if (c) -- cgit v1.2.3