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

Fixed error in dnslib_rrset_free.

parent 909720a0
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,7 @@ uint dnslib_rrset_rrsig_count( const dnslib_rrset_t *rrset )
void dnslib_rrset_free( dnslib_rrset_t **rrset )
{
free(rrset);
free(*rrset);
*rrset = NULL;
}
/* end of file rrset.c */
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