summaryrefslogtreecommitdiff
path: root/ares/ares.h
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-10-30 16:21:56 +0000
committerYang Tse <yangsita@gmail.com>2009-10-30 16:21:56 +0000
commitd4ff44d5f6e41a8ea82210091165670ac9898d47 (patch)
tree9ea295536dc646358f2dc4502c403b7f15875a20 /ares/ares.h
parentfff706d702c764922e1cee4d67edbb55bb0b3e89 (diff)
downloadcurl-d4ff44d5f6e41a8ea82210091165670ac9898d47.tar.gz
In no particular order, changed/fixed all of the following in
ares_parse_txt_reply() current version: - Fixed a couple of potential double free's. - Fixed memory leaks upon out of memory condition. - Fixed pointer arithmetic. - Setting ntxtreply to zero upon entry for all failure cases. - Changed data type to size_t for variables substr_len, str_len and the length member of ares_txt_reply struct. - Avoided a couple of memcpy() calls. - Changed i data type to unsigned int to prevent compiler warnings. - Adjusted a comment. - Use ARES_SUCCESS literal for successfull completion. - Added CVS Id tag.
Diffstat (limited to 'ares/ares.h')
-rw-r--r--ares/ares.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ares/ares.h b/ares/ares.h
index 35038d233..593a14563 100644
--- a/ares/ares.h
+++ b/ares/ares.h
@@ -437,7 +437,7 @@ struct ares_srv_reply {
};
struct ares_txt_reply {
- unsigned int length;
+ size_t length; /* length excludes null termination */
unsigned char *txt;
};