mirror of
https://github.com/curl/curl.git
synced 2026-08-25 23:33:37 +03:00
urldata: move the 'internal' boolean to the state struct
... where all the other state bits for the easy handles live. Closes #12165
This commit is contained in:
parent
b0bee93dfe
commit
fc077bc786
5 changed files with 7 additions and 8 deletions
|
|
@ -3770,7 +3770,7 @@ struct Curl_easy **curl_multi_get_handles(struct Curl_multi *multi)
|
|||
struct Curl_easy *e = multi->easyp;
|
||||
while(e) {
|
||||
DEBUGASSERT(i < multi->num_easy);
|
||||
if(!e->internal)
|
||||
if(!e->state.internal)
|
||||
a[i++] = e;
|
||||
e = e->next;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue