| 255 | } |
| 256 | |
| 257 | static 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, |
no test coverage detected