| 1905 | } |
| 1906 | |
| 1907 | void grep_source_clear(struct grep_source *gs) |
| 1908 | { |
| 1909 | FREE_AND_NULL(gs->name); |
| 1910 | FREE_AND_NULL(gs->path); |
| 1911 | FREE_AND_NULL(gs->identifier); |
| 1912 | grep_source_clear_data(gs); |
| 1913 | } |
| 1914 | |
| 1915 | void grep_source_clear_data(struct grep_source *gs) |
| 1916 | { |
no test coverage detected