From 3ec572541fe4e0eaa91ec247c25a4f1accba7554 Mon Sep 17 00:00:00 2001 From: Lachlan Harris <121010139+lachlanharrisdev@users.noreply.github.com> Date: Mon, 26 Jan 2026 19:28:27 +1100 Subject: [PATCH] fix: infinite loop in vsscanf whitespace processing --- src/VBox/Runtime/common/string/nocrt-vsscanf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VBox/Runtime/common/string/nocrt-vsscanf.cpp b/src/VBox/Runtime/common/string/nocrt-vsscanf.cpp index e2460828eef..5a59552870e 100644 --- a/src/VBox/Runtime/common/string/nocrt-vsscanf.cpp +++ b/src/VBox/Runtime/common/string/nocrt-vsscanf.cpp @@ -217,7 +217,7 @@ int RT_NOCRT(vsscanf)(const char *pszString, const char *pszFormat, va_list va) while (RT_C_IS_SPACE(*pszFormat)) pszFormat++; while (RT_C_IS_SPACE(*pszString)) - pszFormat++; + pszString++; break; /*