summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-07-24 21:51:43 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-07-24 21:51:43 +0000
commit0b6c1345eb3bcfd2529e96aedf82b31e0f89b345 (patch)
tree3aedbe356b5bfa983e54ef0e3dfb4644423ba415 /CHANGES
parente8e8d3a4077add2afb6dec9400178921efd9db6f (diff)
downloadc-ares-0b6c1345eb3bcfd2529e96aedf82b31e0f89b345.tar.gz
c-ares-0b6c1345eb3bcfd2529e96aedf82b31e0f89b345.tar.bz2
c-ares-0b6c1345eb3bcfd2529e96aedf82b31e0f89b345.zip
--enable-debug builds static only, Gisle fixed a memory leak and more
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES17
1 files changed, 17 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 3380307..e441132 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,22 @@
Changelog for the c-ares project
+* July 24
+
+- Made the lib get built static only if --enable-debug is used.
+
+- Gisle Vanem fixed:
+
+ Basically in loops like handle_errors(), 'query->next' was assigned a local
+ variable and then query was referenced after the memory was freed by
+ next_server(). I've changed that so next_server() and end_query() returns
+ the next query. So callers should use this ret-value.
+
+ The next problem was that 'server->tcp_buffer_pos' had a random value at
+ entry to 1st recv() (luckily causing Winsock to return ENOBUFS).
+
+ I've also added a ares_writev() for Windows to streamline the code a bit
+ more.
+
* July 20
- Fixed a few variable return types for some system calls. Made configure
check for ssize_t to make it possible to use that when receiving the send()