diff mbox

[1/4] btrfs-progs: close fd on return from label get/set functions

Message ID 1363043581-15812-2-git-send-email-sandeen@redhat.com (mailing list archive)
State Accepted, archived
Headers show

Commit Message

Eric Sandeen March 11, 2013, 11:12 p.m. UTC
Somehow missed these 2 in the last round.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---
 utils.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
diff mbox

Patch

diff --git a/utils.c b/utils.c
index f68436d..1c73d67 100644
--- a/utils.c
+++ b/utils.c
@@ -1217,6 +1217,7 @@  static int set_label_mounted(const char *mount_path, const char *label)
 		return -1;
 	}
 
+	close(fd);
 	return 0;
 }
 
@@ -1274,6 +1275,7 @@  static int get_label_mounted(const char *mount_path)
 	}
 
 	fprintf(stdout, "%s\n", label);
+	close(fd);
 	return 0;
 }