MCPcopy Create free account
hub / github.com/git/git / free_line_log_data

Function free_line_log_data

line-log.c:258–266  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

256}
257
258static void free_line_log_data(struct line_log_data *r)
259{
260 while (r) {
261 struct line_log_data *next = r->next;
262 line_log_data_clear(r);
263 free(r);
264 r = next;
265 }
266}
267
268static struct line_log_data *
269search_line_log_data(struct line_log_data *list, const char *path,

Callers 5

add_line_rangeFunction · 0.85
clear_commit_line_rangeFunction · 0.85
line_log_initFunction · 0.85
free_void_line_log_dataFunction · 0.85

Calls 1

line_log_data_clearFunction · 0.85

Tested by

no test coverage detected