Merge pull request #667 from poettering/dns-rr-memleak

resolve: fix two minor memory leaks
This commit is contained in:
Tom Gundersen 2015-07-23 03:58:47 +02:00
commit f7d51e1c19

View file

@ -533,7 +533,7 @@ static char *format_types(Bitmap *types) {
BITMAP_FOREACH(type, types, i) {
if (dns_type_to_string(type)) {
r = strv_extend(&strv, strdup(dns_type_to_string(type)));
r = strv_extend(&strv, dns_type_to_string(type));
if (r < 0)
return NULL;
} else {
@ -543,7 +543,7 @@ static char *format_types(Bitmap *types) {
if (r < 0)
return NULL;
r = strv_extend(&strv, t);
r = strv_consume(&strv, t);
if (r < 0)
return NULL;
}