summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Nieder <jrn@google.com>2020-07-27 16:24:54 -0700
committerDaniel Stenberg <daniel@haxx.se>2020-07-28 15:48:30 +0200
commit2b6b843bb133b1a2928a82def520084c093076d0 (patch)
tree7ad1f7070647a30edfaea88d31f0fcce93cbf5ff
parent34e5ad21d2cb98475acdbf7a3a6ea973d8c12249 (diff)
downloadcurl-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
-rw-r--r--lib/multihandle.h2
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 */