mirror of
https://git.proxmox.com/git/libgit2
synced 2025-12-01 11:37:11 +00:00
This changes the get_entry() method to return a refcounted version of the config entry, which you have to free when you're done. This allows us to avoid freeing the memory in which the entry is stored on a refresh, which may happen at any time for a live config. For this reason, get_string() has been forbidden on live configs and a new function get_string_buf() has been added, which stores the string in a git_buf which the user then owns. The functions which parse the string value takea advantage of the borrowing to parse safely and then release the entry. |
||
|---|---|---|
| .. | ||
| commit.h | ||
| config.h | ||
| diff.h | ||
| filter.h | ||
| hashsig.h | ||
| index.h | ||
| mempack.h | ||
| odb_backend.h | ||
| openssl.h | ||
| refdb_backend.h | ||
| reflog.h | ||
| refs.h | ||
| repository.h | ||
| stream.h | ||
| transport.h | ||