From 2c2a48dd2689dcbd9ae754c802f33e6acf0ae2cf Mon Sep 17 00:00:00 2001 From: Brad Langhorst Date: Sun, 15 Jun 2025 17:03:13 -0400 Subject: [PATCH] without this errno setting, all bounds strings are considered invalid on ARM64 --- common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common.c b/common.c index 4fb0b22..b4b5b90 100644 --- a/common.c +++ b/common.c @@ -9,6 +9,7 @@ #include void parseBounds(char *s2, int *vals, int mult) { + errno = 0; // ARM-specific fix for bounds parsing char *p, *s = strdup(s2), *end; int i, v; long tempV;