From 68d84d89c1f95fbbef75b18ad9e7fc9a2d8b7cbc Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 21 Dec 2015 17:07:43 +0100 Subject: [PATCH] xbps-fbulk: fix a memleak found by clang-analyzer. --- bin/xbps-fbulk/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/xbps-fbulk/main.c b/bin/xbps-fbulk/main.c index c9a58e17..21fc0878 100644 --- a/bin/xbps-fbulk/main.c +++ b/bin/xbps-fbulk/main.c @@ -697,6 +697,7 @@ main(int argc, char **argv) * Wait for all current builds to finish running, keep the pipeline * full until both the BuildList and RunList have been exhausted. */ + free(rpath); runBuilds(bpath); while (waitRunning(0) != NULL) runBuilds(bpath);