From 217926b5dbb2004ee9a967abbad8b738d9f93164 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 17 Jul 2025 21:42:08 +0200 Subject: [PATCH] lib2032: fix correctly Without changing code. Previous iteration triggered the torture tests: https://github.com/curl/curl/actions/runs/16353901487/job/46207376778?pr=17955#step:41:4212 --- tests/libtest/lib2032.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libtest/lib2032.c b/tests/libtest/lib2032.c index f2acbc41a3..993626bb35 100644 --- a/tests/libtest/lib2032.c +++ b/tests/libtest/lib2032.c @@ -142,7 +142,7 @@ static CURLcode test_lib2032(char *URL) /* libntlmconnect */ "testuser:testpass"); easy_setopt(ntlm_easy[num_handles], CURLOPT_WRITEFUNCTION, callback); easy_setopt(ntlm_easy[num_handles], CURLOPT_WRITEDATA, - ntlm_easy[num_handles]); + (void *)(ntlm_easy + num_handles)); easy_setopt(ntlm_easy[num_handles], CURLOPT_HEADER, 1L); multi_add_handle(multi, ntlm_easy[num_handles]);