summaryrefslogtreecommitdiff
path: root/src/libunixonacid
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2023-07-06 14:54:18 +0000
committerLaurent Bercot <ska@appnovation.com>2023-07-06 14:54:18 +0000
commit9964840c291e46a0e001d930e2dd2fb0e1b16967 (patch)
tree4a3d455d89f1eb26ed17485dcde45596136bf6aa /src/libunixonacid
parent4f0ff15709ee9f0f025858ac85ec21a9d955e88e (diff)
downloadskalibs-9964840c291e46a0e001d930e2dd2fb0e1b16967.tar.xz
More jjk fixes
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libunixonacid')
-rw-r--r--src/libunixonacid/open_appendatb.c8
-rw-r--r--src/libunixonacid/open_readatb.c8
-rw-r--r--src/libunixonacid/open_truncatb.c8
-rw-r--r--src/libunixonacid/open_writeatb.c8
-rw-r--r--src/libunixonacid/openc_appendatb.c8
-rw-r--r--src/libunixonacid/openc_readatb.c8
-rw-r--r--src/libunixonacid/openc_truncatb.c8
-rw-r--r--src/libunixonacid/openc_writeatb.c8
8 files changed, 48 insertions, 16 deletions
diff --git a/src/libunixonacid/open_appendatb.c b/src/libunixonacid/open_appendatb.c
index 5a75120..8315256 100644
--- a/src/libunixonacid/open_appendatb.c
+++ b/src/libunixonacid/open_appendatb.c
@@ -6,7 +6,11 @@
int open_appendatb (int dirfd, char const *name)
{
int fd = open_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 ;
}
diff --git a/src/libunixonacid/open_readatb.c b/src/libunixonacid/open_readatb.c
index 6e4cd0f..9d9ed26 100644
--- a/src/libunixonacid/open_readatb.c
+++ b/src/libunixonacid/open_readatb.c
@@ -6,7 +6,11 @@
int open_readatb (int dirfd, char const *name)
{
int fd = open_readat(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 ;
}
diff --git a/src/libunixonacid/open_truncatb.c b/src/libunixonacid/open_truncatb.c
index fc4d685..26c2ac7 100644
--- a/src/libunixonacid/open_truncatb.c
+++ b/src/libunixonacid/open_truncatb.c
@@ -6,7 +6,11 @@
int open_truncatb (int dirfd, char const *name)
{
int fd = open_truncat(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 ;
}
diff --git a/src/libunixonacid/open_writeatb.c b/src/libunixonacid/open_writeatb.c
index fd75365..46649e8 100644
--- a/src/libunixonacid/open_writeatb.c
+++ b/src/libunixonacid/open_writeatb.c
@@ -6,7 +6,11 @@
int open_writeatb (int dirfd, char const *name)
{
int fd = open_writeat(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 ;
}
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 ;
}
diff --git a/src/libunixonacid/openc_readatb.c b/src/libunixonacid/openc_readatb.c
index 4da65ab..50823d3 100644
--- a/src/libunixonacid/openc_readatb.c
+++ b/src/libunixonacid/openc_readatb.c
@@ -6,7 +6,11 @@
int openc_readatb (int dirfd, char const *name)
{
int fd = openc_readat(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 ;
}
diff --git a/src/libunixonacid/openc_truncatb.c b/src/libunixonacid/openc_truncatb.c
index a791790..3d52f4d 100644
--- a/src/libunixonacid/openc_truncatb.c
+++ b/src/libunixonacid/openc_truncatb.c
@@ -6,7 +6,11 @@
int openc_truncatb (int dirfd, char const *name)
{
int fd = openc_truncat(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 ;
}
diff --git a/src/libunixonacid/openc_writeatb.c b/src/libunixonacid/openc_writeatb.c
index daa1fe8..5b9408c 100644
--- a/src/libunixonacid/openc_writeatb.c
+++ b/src/libunixonacid/openc_writeatb.c
@@ -6,7 +6,11 @@
int openc_writeatb (int dirfd, char const *name)
{
int fd = openc_writeat(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 ;
}