Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/syscalls.cc')
-rw-r--r--winsup/cygwin/syscalls.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc
index b73391d8f..3edb55bc6 100644
--- a/winsup/cygwin/syscalls.cc
+++ b/winsup/cygwin/syscalls.cc
@@ -3030,8 +3030,10 @@ extern "C" int
posix_fallocate (int fd, off_t offset, off_t len)
{
int res = 0;
- if (offset < 0 || len == 0)
+ if (offset < 0 || len <= 0)
res = EINVAL;
+ else if (INT64_MAX - len < offset)
+ res = EFBIG;
else
{
cygheap_fdget cfd (fd);