musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/linux/getdents.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/getdents.c')
-rw-r--r--src/linux/getdents.c 2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/linux/getdents.c b/src/linux/getdents.c
index de6de3b4..796c1e5c 100644
--- a/src/linux/getdents.c
+++ b/src/linux/getdents.c
@@ -1,9 +1,11 @@
#define _BSD_SOURCE
#include <dirent.h>
+#include <limits.h>
#include "syscall.h"
int getdents(int fd, struct dirent *buf, size_t len)
{
+ if (len>INT_MAX) len = INT_MAX;
return syscall(SYS_getdents, fd, buf, len);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月20日 06:49:43 +0000

AltStyle によって変換されたページ (->オリジナル) /