From 9964840c291e46a0e001d930e2dd2fb0e1b16967 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Thu, 6 Jul 2023 14:54:18 +0000 Subject: More jjk fixes Signed-off-by: Laurent Bercot --- src/libunixonacid/openc_appendatb.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/libunixonacid/openc_appendatb.c') diff --git a/src/libunixonacid/openc_appendatb.c b/src/libunixonacid/openc_appendatb.c index 066e695..88db718 100644 --- a/src/libunixonacid/openc_appendatb.c +++ b/src/libunixonacid/openc_appendatb.c @@ -6,7 +6,11 @@ int openc_appendatb (int dirfd, char const *name) { int fd = openc_appendat(dirfd, name) ; - if (fd < 0) return -1 ; - if (ndelay_off(fd) < 0) return -1 ; + if (fd == -1) return -1 ; + if (ndelay_off(fd) == -1) + { + fd_close(fd) ; + return -1 ; + } return fd ; } -- cgit v1.2.3