]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
- Jeff Pohlmeyer fixed a flaw in curl_multi_add_handle() when adding a handle
authorDaniel Stenberg <daniel@haxx.se>
Mon, 12 Feb 2007 12:15:41 +0000 (12:15 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 12 Feb 2007 12:15:41 +0000 (12:15 +0000)
  that has an easy handle present in the "closure" list pending closure.

CHANGES
lib/multi.c

diff --git a/CHANGES b/CHANGES
index 624317f52cd603190f659557e1aae3e665a8bf7a..1d395b7a76f4b45f51ca3139fc7d75a66531be7f 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,10 @@
 
                                   Changelog
 
+Daniel (12 February 2007)
+- Jeff Pohlmeyer fixed a flaw in curl_multi_add_handle() when adding a handle
+  that has an easy handle present in the "closure" list pending closure.
+
 Daniel (6 February 2007)
 - Regular file downloads wiht SFTP and SCP are now done using the non-blocking
   API of libssh2, if the libssh2 headers seem to support them. This will make
index b501f296f8159f890099b9c9e19b0cbcd67eb2ff..d32172288fa27be36848333d28d17e0afbec6ded 100644 (file)
@@ -396,6 +396,7 @@ CURLMcode curl_multi_add_handle(CURLM *multi_handle,
       break; /* no need to continue since this handle can only be present once
                 in the list */
     }
+    prev = cl;
     cl = next;
   }