From a41cea7d677702664ab15894880b3a2f7ba27547 Mon Sep 17 00:00:00 2001 From: boingball Date: Mon, 17 Nov 2025 22:49:27 +0000 Subject: [PATCH] AmigaOS: increase minimum stack size for tool_main In testing, the older stack size of 16384 was causing curl to crash on heavy TLS loads Closes #19578 --- src/tool_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool_main.c b/src/tool_main.c index 8df63ef05a..8047e663c8 100644 --- a/src/tool_main.c +++ b/src/tool_main.c @@ -65,7 +65,7 @@ int vms_show = 0; #else #define CURL_USED #endif -static const char CURL_USED min_stack[] = "$STACK:16384"; +static const char CURL_USED min_stack[] = "$STACK:32768"; #endif #ifdef __MINGW32__