From d86394da233c4305fb72daf72914cbb193373e1d Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Thu, 17 Jan 2013 16:32:41 -0800 Subject: [PATCH] btrfs-progs: remove unused info_fd finish_subvol() initializes and tests info_fd but it is never used. Signed-off-by: Zach Brown --- cmds-receive.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/cmds-receive.c b/cmds-receive.c index 973687f3..e6291744 100644 --- a/cmds-receive.c +++ b/cmds-receive.c @@ -71,7 +71,6 @@ static int finish_subvol(struct btrfs_receive *r) { int ret; int subvol_fd = -1; - int info_fd = -1; struct btrfs_ioctl_received_subvol_args rs_args; char uuid_str[128]; u64 flags; @@ -132,8 +131,6 @@ static int finish_subvol(struct btrfs_receive *r) out: if (subvol_fd != -1) close(subvol_fd); - if (info_fd != -1) - close(info_fd); return ret; }