mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-08 01:13:16 +00:00
Wipe the whole buffer containing the DNS name, not the size of its pointer
This commit is contained in:
parent
ac7cbd4435
commit
2d90aaaf30
|
@ -2023,7 +2023,7 @@ write_dns_nameenc(char *buf, size_t buflen, char *data, int datalen, char downen
|
||||||
space = MIN(0xFF, buflen) - 4 - 2;
|
space = MIN(0xFF, buflen) - 4 - 2;
|
||||||
/* -1 encoding type, -3 ".xy", -2 for safety */
|
/* -1 encoding type, -3 ".xy", -2 for safety */
|
||||||
|
|
||||||
memset(buf, 0, sizeof(buf));
|
memset(buf, 0, buflen);
|
||||||
|
|
||||||
if (downenc == 'S') {
|
if (downenc == 'S') {
|
||||||
buf[0] = 'i';
|
buf[0] = 'i';
|
||||||
|
|
Loading…
Reference in a new issue