Merge branch 'rs/git-mmap-uses-malloc'
commitce7ae09bd4912fbd54b01089f2dfe01a94cb7fea
authorJunio C Hamano <gitster@pobox.com>
Wed, 8 Sep 2021 20:30:27 +0000 (8 13:30 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 8 Sep 2021 20:30:27 +0000 (8 13:30 -0700)
tree3c60e78fe617bb32d4c3376a038a7935cfdd2016
parente18f4de927c024eb459912f21b7906d409e0e95f
parent95b4ff3931064ff222e87eecf6af504ba55069d7
Merge branch 'rs/git-mmap-uses-malloc'

mmap() imitation used to call xmalloc() that dies upon malloc()
failure, which has been corrected to just return an error to the
caller to be handled.

* rs/git-mmap-uses-malloc:
  compat: let git_mmap use malloc(3) directly