Skip to content
Snippets Groups Projects
Commit b9a6dfab authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

When working with a problem Stefan Becker had, I found an off-by-one buffer

overwrite in Curl_select(). While fixing it, I also improved its performance
somewhat by changing calloc to malloc and breaking out of a loop earlier
(when possible).
parent 8bd7197a
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,12 @@
\___|\___/|_| \_\_____|
Changelog
Daniel S (27 May 2007)
- When working with a problem Stefan Becker had, I found an off-by-one buffer
overwrite in Curl_select(). While fixing it, I also improved its performance
somewhat by changing calloc to malloc and breaking out of a loop earlier
(when possible).
Daniel S (25 May 2007)
- Rob Crittenden fixed bug #1705802
(http://curl.haxx.se/bug/view.cgi?id=1705802), which was filed by Daniel
......
......@@ -48,6 +48,7 @@ This release includes the following bugfixes:
o memory leak when failed OpenSSL certificate CN field checking
o memory leak when OpenSSL failed PKCS #12 parsing
o FPL-SSL when built with NSS
o out-of-boundary write in Curl_select()
This release includes the following known bugs:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment