From: Jonathan Nieder Date: Mon, 27 Jul 2020 23:24:54 +0000 (-0700) Subject: multi: update comment to say easyp list is linear X-Git-Tag: curl-7_72_0~73 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b6b843bb133b1a2928a82def520084c093076d0;p=thirdparty%2Fcurl.git 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 Closes #5737 --- diff --git a/lib/multihandle.h b/lib/multihandle.h index 91eca16c4a..9d73df0812 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 */