Gmane
Favicon
From: <cvs <at> labb.contactor.se>
Subject: bagder: curl CHANGES,1.971,1.972 RELEASE-NOTES,1.509,1.510
Newsgroups: gmane.comp.web.curl.cvs
Date: 2007-02-18 23:02:46 GMT (2 years, 19 weeks, 4 days, 11 hours and 8 minutes ago)
Update of /cvsroot/curl/curl
In directory labb:/tmp/cvs-serv2012

Modified Files:
	CHANGES RELEASE-NOTES 
Log Message:
- Jeff Pohlmeyer identified two problems: first a rather obscure problem with
  the multi interface and connection re-use that could make a
  curl_multi_remove_handle() ruin a pointer in another handle.

  The second problem was less of an actual problem but more of minor quirk:
  the re-using of connections wasn't properly checking if the connection was
  marked for closure.

Index: RELEASE-NOTES
===================================================================
RCS file: /cvsroot/curl/curl/RELEASE-NOTES,v
retrieving revision 1.509
retrieving revision 1.510
diff -u -d -r1.509 -r1.510
--- RELEASE-NOTES	16 Feb 2007 15:37:05 -0000	1.509
+++ RELEASE-NOTES	18 Feb 2007 23:02:43 -0000	1.510
@@ -23,6 +23,7 @@
  o socks5 works
  o builds fine with VC2005
  o CURLOPT_RANGE set to NULL resets the range for FTP
+ o curl_multi_remove_handle() rare crash

 This release includes the following known bugs:

@@ -40,6 +41,7 @@
 advice from friends like these:

  Yang Tse, Manfred Schwarb, Michael Wallner, Jeff Pohlmeyer, Shmulik Regev,
- Rob Crittenden, Robert A. Monat, Duncan Mac-Vicar Prett, Michal Marek
+ Rob Crittenden, Robert A. Monat,  Dan Fandrich, Duncan Mac-Vicar Prett,
+ Michal Marek

         Thanks! (and sorry if I forgot to mention someone)

Index: CHANGES
===================================================================
RCS file: /cvsroot/curl/curl/CHANGES,v
retrieving revision 1.971
retrieving revision 1.972
diff -u -d -r1.971 -r1.972
--- CHANGES	16 Feb 2007 15:37:05 -0000	1.971
+++ CHANGES	18 Feb 2007 23:02:42 -0000	1.972
@@ -6,6 +6,15 @@

                                   Changelog

+Daniel (18 February 2007)
+- Jeff Pohlmeyer identified two problems: first a rather obscure problem with
+  the multi interface and connection re-use that could make a
+  curl_multi_remove_handle() ruin a pointer in another handle.
+
+  The second problem was less of an actual problem but more of minor quirk:
+  the re-using of connections wasn't properly checking if the connection was
+  marked for closure.
+
 Daniel (16 February 2007)
 - Duncan Mac-Vicar Prett and Michal Marek reported problems with resetting
   CURLOPT_RANGE back to no range on an easy handle when using FTP.