diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-07-07 22:58:06 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-07-07 22:58:06 +0000 |
commit | ca319f63ad757a69f14105ab4a8bbf10987b8ad0 (patch) | |
tree | d50690605fefd4ea78795d68068a4425bc9494b2 /RELEASE-NOTES | |
parent | a09a8164db637b35de52bdea757e8ea930f28eaf (diff) |
Ingmar Runge provided a source snippet that caused a crash. The reason for
the crash was that libcurl internally was a bit confused about who owned the
DNS cache at all times so if you created an easy handle that uses a shared
DNS cache and added that to a multi handle it would crash. Now we keep more
careful internal track of exactly what kind of DNS cache each easy handle
uses: None, Private (allocated for and used only by this single handle),
Shared (points to a cache held by a shared object), Global (points to the
global cache) or Multi (points to the cache within the multi handle that is
automatically shared between all easy handles that are added with private
caches).
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r-- | RELEASE-NOTES | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 06c7d5a34..d8c66cdd2 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -18,6 +18,7 @@ This release includes the following changes: This release includes the following bugfixes: + o an easy handle with shared DNS cache added to a multi handle caused a crash o couldn't override the Proxy-Connection: header for non-CONNECT requests o curl_multi_fdset() could wrongly return -1 as max_fd value @@ -35,6 +36,7 @@ New curl mirrors: This release would not have looked like this without help, code, reports and advice from friends like these: - Dan Fandrich, Peter Silva, Arve Knudsen, Michael Wallner, Toshiyuki Maezawa + Dan Fandrich, Peter Silva, Arve Knudsen, Michael Wallner, Toshiyuki Maezawa, + Ingmar Runge Thanks! (and sorry if I forgot to mention someone) |