summaryrefslogtreecommitdiffstats
path: root/usr.sbin/extattrctl/extattrctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/extattrctl/extattrctl.c')
-rw-r--r--usr.sbin/extattrctl/extattrctl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.sbin/extattrctl/extattrctl.c b/usr.sbin/extattrctl/extattrctl.c
index 1929f79..377d3ba 100644
--- a/usr.sbin/extattrctl/extattrctl.c
+++ b/usr.sbin/extattrctl/extattrctl.c
@@ -144,9 +144,11 @@ initattr(int argc, char *argv[])
if (error == -1) {
perror(argv[1]);
unlink(argv[1]);
+ close(i);
return (-1);
}
+ close(i);
return (0);
}
@@ -168,21 +170,25 @@ showattr(int argc, char *argv[])
i = read(fd, &uef, sizeof(uef));
if (i == -1) {
perror(argv[0]);
+ close(fd);
return (-1);
}
if (i != sizeof(uef)) {
fprintf(stderr, "%s: invalid file header\n", argv[0]);
+ close(fd);
return (-1);
}
if (uef.uef_magic != UFS_EXTATTR_MAGIC) {
fprintf(stderr, "%s: bad magic\n", argv[0]);
+ close(fd);
return (-1);
}
printf("%s: version %d, size %d\n", argv[0], uef.uef_version,
uef.uef_size);
+ close(fd);
return (0);
}
OpenPOWER on IntegriCloud