Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'vn/xmmap-gently'
author
Junio C Hamano
<gitster@pobox.com>
Thu, 25 Jul 2019 20:59:22 +0000
(13:59 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 25 Jul 2019 20:59:22 +0000
(13:59 -0700)
Clean-up an error codepath.
* vn/xmmap-gently:
read-cache.c: do not die if mmap fails
read-cache.c
patch
|
blob
|
history
raw
(from parent 1:
c7cf2de
)
diff --git
a/read-cache.c
b/read-cache.c
index c701f7f8b81378104e2732e8bb132144ff82e8f5..52ffa8a3139f2e427fadb7d233fb4910819becc9 100644
(file)
--- a/
read-cache.c
+++ b/
read-cache.c
@@
-2140,7
+2140,7
@@
int do_read_index(struct index_state *istate, const char *path, int must_exist)
if (mmap_size < sizeof(struct cache_header) + the_hash_algo->rawsz)
die(_("%s: index file smaller than expected"), path);
- mmap = xmmap(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd, 0);
+ mmap = xmmap
_gently
(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd, 0);
if (mmap == MAP_FAILED)
die_errno(_("%s: unable to map index file"), path);
close(fd);