diff options
author | Jonathan Nieder <jrn@google.com> | 2020-07-27 16:24:54 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-07-28 15:48:30 +0200 |
commit | 2b6b843bb133b1a2928a82def520084c093076d0 (patch) | |
tree | 7ad1f7070647a30edfaea88d31f0fcce93cbf5ff /lib | |
parent | 34e5ad21d2cb98475acdbf7a3a6ea973d8c12249 (diff) | |
download | curl-2b6b843bb133b1a2928a82def520084c093076d0.tar.gz |
multi: update comment to say easyp list is linear
Since 09b9fc900 (multi: remove 'Curl_one_easy' struct, phase 1,
2013-08-02), the easy handle list is not circular but ends with
->next pointing to NULL.
Reported-by: Masaya Suzuki <masayasuzuki@google.com>
Closes #5737
Diffstat (limited to 'lib')
-rw-r--r-- | lib/multihandle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/multihandle.h b/lib/multihandle.h index 91eca16c4..9d73df081 100644 --- a/lib/multihandle.h +++ b/lib/multihandle.h @@ -81,7 +81,7 @@ struct Curl_multi { this multi handle with an easy handle. Set this to CURL_MULTI_HANDLE. */ long type; - /* We have a doubly-linked circular list with easy handles */ + /* We have a doubly-linked list with easy handles */ struct Curl_easy *easyp; struct Curl_easy *easylp; /* last node */ |