From 19dd868da89e48d20e52fdc5ce2bab6971ca3e9f Mon Sep 17 00:00:00 2001 From: Richard Genoud Date: Tue, 3 Nov 2020 12:11:10 +0100 Subject: [PATCH] fs/squashfs: sqfs_size: remove useless sqfs_closedir() as sqfs_opendir failed, there's no need to call sqfs_closedir Signed-off-by: Richard Genoud [jh80.chung: cherry picked from mainline commit 35475f83a107901551c31f7bc70f5266862a33e4] Signed-off-by: Jaehoon Chung Change-Id: I809ae83d5949f86d547b52982cf318e7202a6868 --- fs/squashfs/sqfs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/squashfs/sqfs.c b/fs/squashfs/sqfs.c index c3b662e..79a465e 100644 --- a/fs/squashfs/sqfs.c +++ b/fs/squashfs/sqfs.c @@ -1560,7 +1560,6 @@ int sqfs_size(const char *filename, loff_t *size) */ ret = sqfs_opendir(dir, &dirsp); if (ret) { - sqfs_closedir(dirsp); ret = -EINVAL; goto free_strings; } -- 2.7.4