From 2b6b843bb133b1a2928a82def520084c093076d0 Mon Sep 17 00:00:00 2001 From: Jonathan Nieder Date: Mon, 27 Jul 2020 16:24:54 -0700 Subject: [PATCH] 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 --- lib/multihandle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */