From ce95cd35b2546dd2e8fb674722d2a800fafeaf4c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 11 Jul 2016 10:11:02 -0400 Subject: Fix memory leak --- src/sratom.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sratom.c b/src/sratom.c index f5beea4..7966e65 100644 --- a/src/sratom.c +++ b/src/sratom.c @@ -651,10 +651,11 @@ read_node(Sratom* sratom, SerdURI uri; serd_uri_parse((const uint8_t*)str, &uri); - SerdNode rel = serd_node_new_relative_uri(&uri, &sratom->base, NULL, NULL); + SerdNode rel = serd_node_new_relative_uri(&uri, &sratom->base, NULL, NULL); uint8_t* path = serd_file_uri_parse(rel.buf, NULL); lv2_atom_forge_path(forge, (const char*)path, strlen((const char*)path)); free(path); + serd_node_free(&rel); } else { lv2_atom_forge_urid(forge, map->map(map->handle, str)); } -- cgit v1.2.1