diff options
Diffstat (limited to 'src/unix/map.c')
-rw-r--r-- | src/unix/map.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unix/map.c b/src/unix/map.c index 1e2389ec2..772f4e247 100644 --- a/src/unix/map.c +++ b/src/unix/map.c @@ -17,8 +17,7 @@ int p_mmap(git_map *out, size_t len, int prot, int flags, int fd, git_off_t offs int mprot = 0; int mflag = 0; - if (validate_map_args(out, len, prot, flags, fd, offset) < 0) - return -1; + GIT_MMAP_VALIDATE(out, len, prot, flags); out->data = NULL; out->len = 0; |