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

Fixed #1411, crash was in a debug message.

parent 53ffb7a6
No related branches found
No related tags found
No related merge requests found
......@@ -2969,9 +2969,9 @@ dbg_ns_exec(
}
dbg_ns_exec(
char *name_str2 = knot_dname_to_str(zone->contents->apex->owner);
dbg_ns("Found zone for QNAME %s\n", name_str2);
free(name_str2);
char *name2_str = knot_dname_to_str(qname);
dbg_ns("Found zone for name %s\n", name2_str);
free(name2_str);
);
xfr->zone = zone;
......
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