Skip to content
Snippets Groups Projects
Commit 637edc64 authored by Lubos Slovak's avatar Lubos Slovak
Browse files

Copying children count in node_deep_copy()

parent ac8e5119
No related branches found
No related tags found
No related merge requests found
......@@ -627,6 +627,7 @@ int dnslib_node_deep_copy(const dnslib_node_t *from, dnslib_node_t **to)
(*to)->wildcard_child = from->wildcard_child;
(*to)->prev = from->prev;
(*to)->next = from->next;
(*to)->children = from->children;
// copy RRSets
// copy the skip list with the old references
......
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