summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorcperciva <cperciva@FreeBSD.org>2005-02-10 20:09:01 +0000
committercperciva <cperciva@FreeBSD.org>2005-02-10 20:09:01 +0000
commit7294dae01f25265a93a13bf52c422a0bb5ec5091 (patch)
treecdc16140c1336bed83fa6754b3de6e36ac172de4 /lib/libc
parent53986fb12f8c25cc567186f155318de8be9d04b0 (diff)
downloadFreeBSD-src-7294dae01f25265a93a13bf52c422a0bb5ec5091.zip
FreeBSD-src-7294dae01f25265a93a13bf52c422a0bb5ec5091.tar.gz
read(), pread(), write(), and pwrite() return EINVAL if they are asked
for more than INT_MAX bytes.
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/sys/read.25
-rw-r--r--lib/libc/sys/write.25
2 files changed, 10 insertions, 0 deletions
diff --git a/lib/libc/sys/read.2 b/lib/libc/sys/read.2
index 994190c..8dd7731 100644
--- a/lib/libc/sys/read.2
+++ b/lib/libc/sys/read.2
@@ -180,6 +180,11 @@ is before the end-of-file, and
.Fa offset
is greater than or equal to the offset maximum established
for this file system.
+.It Bq Er EINVAL
+The value
+.Fa nbytes
+is greater than
+.Dv INT_MAX .
.El
.Pp
In addition,
diff --git a/lib/libc/sys/write.2 b/lib/libc/sys/write.2
index 19b5ce2..7a7cd79 100644
--- a/lib/libc/sys/write.2
+++ b/lib/libc/sys/write.2
@@ -192,6 +192,11 @@ Use
.Xr disklabel 8
.Fl W
to enable writing on the disk label area.
+.It Bq Er EINVAL
+The value
+.Fa nbytes
+is greater than
+.Dv INT_MAX .
.El
.Pp
In addition,
OpenPOWER on IntegriCloud