From 32bd4678460f5a6d724ca5f4470314bbe63c0429 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Wed, 18 May 2016 12:17:27 -0400 Subject: [PATCH] Fix: Double free in utils_partial_realpath error path MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes coverity #1355521 Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- src/common/utils.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/common/utils.c b/src/common/utils.c index 30a5f106b..901ddb036 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -190,7 +190,9 @@ error: free(resolved_path); free(cut_path); free(try_path); - free(try_path_prev); + if (try_path_prev != try_path) { + free(try_path_prev); + } return NULL; } -- 2.34.1