| 256 | } |
| 257 | |
| 258 | static 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 | |
| 268 | static struct line_log_data * |
| 269 | search_line_log_data(struct line_log_data *list, const char *path, |
no test coverage detected