X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fmodules%2Ffulltext%2Fft_wordbreaker.c;h=968fa9f02b0aa2bf21ddf87890a0e19887d8a56a;hp=b2ba828bb8406a77e8ec28b66c2d7e0eceb2f319;hb=8e944083763c9ddcb32d763cf8f19c966d01f873;hpb=ab6b11ab4005e990fbb368b14c42630b7694c54f diff --git a/citadel/modules/fulltext/ft_wordbreaker.c b/citadel/modules/fulltext/ft_wordbreaker.c index b2ba828bb..968fa9f02 100644 --- a/citadel/modules/fulltext/ft_wordbreaker.c +++ b/citadel/modules/fulltext/ft_wordbreaker.c @@ -147,26 +147,6 @@ void initialize_noise_words(void) } -void noise_word_cleanup(void) -{ - int i; - noise_word *cur, *next; - - syslog(LOG_INFO, "wordbreaker: cleaning up fulltext noise words"); - - for (i = 0 ; i < 26 ; i++) - { - cur = noise_words[i]; - while (cur) - { - next = cur->next; - free(cur->word); - free(cur); - cur = next; - } - } -} - /* * Compare function */