diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-09-11 17:20:03 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-09-11 17:20:03 +0000 | 
| commit | 0e1e5c22c20e636264ff1284083c6af7a1b282cb (patch) | |
| tree | 09add9017de3c98451b1eaf85a24b608cf228e4b /lib/libc/posix1e/acl_entry.c | |
| parent | 6160f3cfcac58513eef46e925b0bf15681e88512 (diff) | |
| parent | 92392e798859a0d87094d6c0b22afee48fde7881 (diff) | |
Notes
Diffstat (limited to 'lib/libc/posix1e/acl_entry.c')
| -rw-r--r-- | lib/libc/posix1e/acl_entry.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/libc/posix1e/acl_entry.c b/lib/libc/posix1e/acl_entry.c index 3f8ca62c8b00..2cffaa33d54c 100644 --- a/lib/libc/posix1e/acl_entry.c +++ b/lib/libc/posix1e/acl_entry.c @@ -91,7 +91,7 @@ acl_create_entry_np(acl_t *acl_p, acl_entry_t *entry_p, int offset)  		return (-1);  	} -	if (offset < 0 || offset >= acl_int->acl_cnt) { +	if (offset < 0 || offset > acl_int->acl_cnt) {  		errno = EINVAL;  		return (-1);  	} | 
