mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-06 21:44:58 +00:00
Small fixes in pack_window_open
Check if the window structure has actually been allocated before trying to access it, and don't leak said structure if the map fails. Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
This commit is contained in:
parent
d830919a2c
commit
2ee318a7bc
@ -480,6 +480,9 @@ static unsigned char *pack_window_open(
|
||||
size_t len;
|
||||
|
||||
win = git__calloc(1, sizeof(*win));
|
||||
if (win == NULL)
|
||||
return NULL;
|
||||
|
||||
win->offset = (offset / window_align) * window_align;
|
||||
|
||||
len = (size_t)(p->pack_size - win->offset);
|
||||
@ -492,8 +495,10 @@ static unsigned char *pack_window_open(
|
||||
pack_window_close_lru(backend, p, p->pack_fd) == GIT_SUCCESS) {}
|
||||
|
||||
if (git_futils_mmap_ro(&win->window_map, p->pack_fd,
|
||||
win->offset, len) < GIT_SUCCESS)
|
||||
win->offset, len) < GIT_SUCCESS) {
|
||||
free(win);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
backend->mmap_calls++;
|
||||
backend->open_windows++;
|
||||
|
Loading…
Reference in New Issue
Block a user