From df13b84670264657da35146d0f3a10e0a5989503 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Thu, 24 Jan 2013 10:45:00 -0800 Subject: [PATCH] btrfs-progs: close fd in inode resolve Signed-off-by: Zach Brown --- cmds-inspect.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cmds-inspect.c b/cmds-inspect.c index f10bf55..4347c1a 100644 --- a/cmds-inspect.c +++ b/cmds-inspect.c @@ -85,6 +85,7 @@ static int cmd_inode_resolve(int argc, char **argv) { int fd; int verbose = 0; + int ret; optind = 1; while (1) { @@ -110,8 +111,11 @@ static int cmd_inode_resolve(int argc, char **argv) return 12; } - return __ino_to_path_fd(atoll(argv[optind]), fd, verbose, - argv[optind+1]); + ret = __ino_to_path_fd(atoll(argv[optind]), fd, verbose, + argv[optind+1]); + close(fd); + return ret; + } static const char * const cmd_logical_resolve_usage[] = { -- 2.7.4