From e904e5abe5626e053fa0db3dbf1d46d5c4801d8b Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Fri, 13 Mar 2020 16:16:58 +0000 Subject: Properly reset the validation part of the tagging module between files. This fixes a crash in makewhatis(8) encountered by naddy@. --- tag.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tag.c') diff --git a/tag.c b/tag.c index 0db354c1..50502e58 100644 --- a/tag.c +++ b/tag.c @@ -59,6 +59,8 @@ tag_free(void) struct tag_entry *entry; unsigned int slot; + if (tag_data.info.free == NULL) + return; entry = ohash_first(&tag_data, &slot); while (entry != NULL) { free(entry->nodes); @@ -66,6 +68,7 @@ tag_free(void) entry = ohash_next(&tag_data, &slot); } ohash_delete(&tag_data); + tag_data.info.free = NULL; } /* -- cgit