mirror of
https://git.proxmox.com/git/libgit2
synced 2025-12-08 01:59:10 +00:00
This makes so much sense that I can't believe it hasn't been done before. Kill the old `git_fbuffer` and read files straight into `git_buf` objects. Also: In order to fully support 4GB files in 32-bit systems, the `git_buf` implementation has been changed from using `ssize_t` for storage and storing negative values on allocation failure, to using `size_t` and changing the buffer pointer to a magical pointer on allocation failure. Hopefully this won't break anything. |
||
|---|---|---|
| .. | ||
| buffer.c | ||
| dirent.c | ||
| filebuf.c | ||
| hex.c | ||
| oid.c | ||
| path.c | ||
| rmdir.c | ||
| string.c | ||
| strtol.c | ||
| vector.c | ||