r18259@catbus: nickm | 2008-02-20 12:03:15 -0500

Make the last of the veracode warning issues get fixed.


svn:r13620
This commit is contained in:
Nick Mathewson
2008-02-20 17:03:16 +00:00
parent 88efec10a2
commit dc949b846a
+2 -1
View File
@@ -1372,7 +1372,7 @@ dnsname_to_labels(u8 *const buf, size_t buf_len, off_t j,
if (table) dnslabel_table_add(table, start, j);
buf[j++] = label_len;
memcpy(buf + j, start, end - start);
memcpy(buf + j, start, label_len);
j += end - start;
break;
} else {
@@ -2186,6 +2186,7 @@ evdns_nameserver_ip_add(const char *ip_as_string) {
if ((cp-ip_as_string) >= (int)sizeof(buf)) {
return 4;
}
tor_assert(cp >= ip_as_string);
memcpy(buf, ip_as_string, cp-ip_as_string);
buf[cp-ip_as_string] = '\0';
cp = buf;