mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 21:16:07 +03:00
fixed memleak on failure
This commit is contained in:
parent
90e47bbf8b
commit
ac1cb81dec
@ -363,6 +363,7 @@ dns_encode_hostname(const char *host, char *buffer, int size)
|
|||||||
word = strtok(h, ".");
|
word = strtok(h, ".");
|
||||||
while(word) {
|
while(word) {
|
||||||
if (strlen(word) > 63 || strlen(word) > left) {
|
if (strlen(word) > 63 || strlen(word) > left) {
|
||||||
|
free(h);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
left -= (strlen(word) + 1);
|
left -= (strlen(word) + 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user