MCPcopy Index your code
hub / github.com/git/git / free_patch_list

Function free_patch_list

apply.c:257–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

255}
256
257static void free_patch_list(struct patch *list)
258{
259 while (list) {
260 struct patch *next = list->next;
261 free_patch(list);
262 list = next;
263 }
264}
265
266/*
267 * A line in a file, len-bytes long (includes the terminating LF,

Callers 1

apply_patchFunction · 0.85

Calls 1

free_patchFunction · 0.85

Tested by

no test coverage detected