mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 16:19:20 +02:00
Fix gcc warning -Wsizeof-pointer-memaccess
iodined.c: In function ‘write_dns_nameenc’: iodined.c:2030:23: attention : argument to ‘sizeof’ in ‘memset’ call is the same expression as the destination; did you mean to provide an explicit length? [-Wsizeof-pointer-memaccess] memset(buf, 0, sizeof(buf)); sizeof buf will just give the size of the pointer, while buflen will clean the whole memory.
This commit is contained in:
parent
59dbaf2b50
commit
64ff684754
|
@ -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 New Issue