Memory leak in getdns_convert_dns_name_to_fqdn

This commit is contained in:
Willem Toorop 2014-02-03 22:42:32 +01:00
parent ca9347b583
commit 1e14430eaf
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ char *
getdns_convert_dns_name_to_fqdn(const char *name_from_dns_response)
{
char *str;
ldns_rdf *rdf = ldns_rdf_new_frm_data(LDNS_RDF_TYPE_DNAME,
ldns_rdf *rdf = ldns_rdf_new(LDNS_RDF_TYPE_DNAME,
sizeof_dname((uint8_t *)name_from_dns_response),
name_from_dns_response);
if (!rdf) return NULL;