| 187 | } |
| 188 | |
| 189 | void _go_git_refdb_backend_free(git_refdb_backend *backend) |
| 190 | { |
| 191 | if (!backend->free) |
| 192 | return; |
| 193 | backend->free(backend); |
| 194 | } |
| 195 | |
| 196 | int _go_git_diff_foreach(git_diff *diff, int eachFile, int eachHunk, int eachLine, void *payload) |
| 197 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…