mirror of
https://github.com/curl/curl.git
synced 2026-06-22 16:55:37 +03:00
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 88fc6c491f #18263
Closes #18371
This commit is contained in:
parent
d6c51a8fda
commit
03868ca714
1 changed files with 1 additions and 1 deletions
|
|
@ -346,7 +346,7 @@ static CURL_THREAD_RETURN_T CURL_STDCALL gethostbyname_thread(void *arg)
|
|||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
async_thrd_cleanup(addr_ctx, 0);
|
||||
async_thrd_cleanup(addr_ctx);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue