mirror of
https://github.com/curl/curl.git
synced 2026-07-31 11:58:05 +03:00
Compiler warning fix
This commit is contained in:
parent
a1de9367ec
commit
15e3dfe1d3
2 changed files with 2 additions and 3 deletions
|
|
@ -377,7 +377,7 @@ CURLMcode curl_multi_add_handle(CURLM *multi_handle,
|
|||
cl = multi->closure;
|
||||
while(cl) {
|
||||
struct closure *next = cl->next;
|
||||
if(cl->easy_handle == easy_handle) {
|
||||
if(cl->easy_handle == (struct SessionHandle *)easy_handle) {
|
||||
/* remove this handle from the closure list */
|
||||
free(cl);
|
||||
if(prev)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue