mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-07 04:21:21 +00:00
Merged pull request #143 from nordsturm/fix_loop.
Fix going into infinite loop in read_header_loose()
This commit is contained in:
commit
5ba7c4cbae
@ -434,6 +434,9 @@ static int read_header_loose(git_rawobj *out, const char *loc)
|
|||||||
if ((read_bytes = read(fd, raw_buffer, sizeof(raw_buffer))) > 0) {
|
if ((read_bytes = read(fd, raw_buffer, sizeof(raw_buffer))) > 0) {
|
||||||
set_stream_input(&zs, raw_buffer, read_bytes);
|
set_stream_input(&zs, raw_buffer, read_bytes);
|
||||||
z_return = inflate(&zs, 0);
|
z_return = inflate(&zs, 0);
|
||||||
|
} else {
|
||||||
|
z_return = Z_STREAM_END;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
} while (z_return == Z_OK);
|
} while (z_return == Z_OK);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user