Skip to content
Snippets Groups Projects
Commit 72f207ef authored by Jan Kadlec's avatar Jan Kadlec
Browse files

Added missing memory error printout.

parent b4063358
Branches
Tags
No related merge requests found
......@@ -24,7 +24,7 @@ dnslib_node_t *dnslib_node_new( dnslib_dname_t *owner, dnslib_node_t *parent )
{
dnslib_node_t *ret = malloc(sizeof(dnslib_node_t));
if (ret == NULL) {
// ERR_ALLOC_MEMORY;
ERR_ALLOC_FAILED;
return NULL;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment