From: Johan Malm Date: Wed, 10 Jun 2020 15:51:05 +0000 (+0100) Subject: tests/t1001-rcxml-nodenames-simple.c: fix leak X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=0ede4c61e689660b58ef76558a6907e4c634e7d5;p=proto%2Flabwc.git tests/t1001-rcxml-nodenames-simple.c: fix leak --- diff --git a/tests/t1001-rcxml-nodenames-simple.c b/tests/t1001-rcxml-nodenames-simple.c index 23089659..fa2823be 100644 --- a/tests/t1001-rcxml-nodenames-simple.c +++ b/tests/t1001-rcxml-nodenames-simple.c @@ -43,5 +43,6 @@ int main(int argc, char **argv) ok1(!strcmp(expect, actual.buf)); free(actual.buf); + free(source.buf); return exit_status(); }