From da8ad0d2aa3e4ff7419c85e4e55c0222a6a95f3c Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Thu, 15 Oct 2015 11:53:56 +0200 Subject: [PATCH] Made clear that a freed pointer variable is not really used any more. Coverity CID 17846. --- libisofs/fs_local.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libisofs/fs_local.c b/libisofs/fs_local.c index 8bb3c57..e889b48 100644 --- a/libisofs/fs_local.c +++ b/libisofs/fs_local.c @@ -545,7 +545,7 @@ ex:; if (path != NULL) free(path); if (names != NULL || value_lengths != NULL || values != NULL) - aaip_get_attr_list(path, &num_attrs, &names, &value_lengths, &values, + aaip_get_attr_list(NULL, &num_attrs, &names, &value_lengths, &values, 1 << 15); /* free memory */ return ret; }