]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
multi: update comment to say easyp list is linear
authorJonathan Nieder <jrn@google.com>
Mon, 27 Jul 2020 23:24:54 +0000 (16:24 -0700)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 28 Jul 2020 13:48:30 +0000 (15:48 +0200)
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

lib/multihandle.h

index 91eca16c4a855e84d8d1b122c79467eb7e35b9e8..9d73df08124c22b3c938647f865472dd40a44173 100644 (file)
@@ -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 */