Skip to content
Snippets Groups Projects
Commit 102ec728 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Adjusted to root dname wiresize check.

refs #2035
parent bccdd8bb
No related branches found
No related tags found
No related merge requests found
......@@ -187,7 +187,7 @@ static void conf_zone_start(void *scanner, char *name) {
if (this_zone->name != NULL) {
memcpy(this_zone->name, name, nlen);
this_zone->name[nlen] = '.';
this_zone->name[nlen + 1] = '\0';
this_zone->name[++nlen] = '\0';
}
free(name);
} else {
......@@ -197,7 +197,7 @@ static void conf_zone_start(void *scanner, char *name) {
/* Check domain name. */
knot_dname_t *dn = NULL;
if (this_zone->name != NULL) {
dn = knot_dname_new_from_str(this_zone->name, nlen + 1, 0);
dn = knot_dname_new_from_str(this_zone->name, nlen, 0);
}
if (dn == NULL) {
free(this_zone->name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment