Skip to content

Commit 03868ca

Browse files
committed
asyn-thrdd: fix no HAVE_GETADDRINFO builds
mingw32ce, CM 4.4.0-arm schannel: ``` lib/asyn-thrdd.c: In function 'gethostbyname_thread': lib/asyn-thrdd.c:349: error: too many arguments to function 'async_thrd_cleanup' ``` Ref: https://github.com/curl/curl/actions/runs/17158865566/job/48682687295?pr=18039#step:9:21 Follow-up to 88fc6c4 curl#18263 Closes curl#18371
1 parent d6c51a8 commit 03868ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/asyn-thrdd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ static CURL_THREAD_RETURN_T CURL_STDCALL gethostbyname_thread(void *arg)
346346
#pragma clang diagnostic pop
347347
#endif
348348

349-
async_thrd_cleanup(addr_ctx, 0);
349+
async_thrd_cleanup(addr_ctx);
350350
return 0;
351351
}
352352

0 commit comments

Comments
 (0)