From: Michael Jeanson Date: Wed, 18 May 2016 16:17:27 +0000 (-0400) Subject: Fix: Double free in utils_partial_realpath error path X-Git-Tag: v2.9.0-rc1~182 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=32bd4678460f5a6d724ca5f4470314bbe63c0429;ds=inline Fix: Double free in utils_partial_realpath error path Fixes coverity #1355521 Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- 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; }