X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Ffulltext%2Fserv_fulltext.c;fp=citadel%2Fmodules%2Ffulltext%2Fserv_fulltext.c;h=6288bfc9ab99adb0a240c99b739aab54da32622e;hb=5e3befebe2ed0ce85324da3be83b21880dc7d069;hp=7943e344cc87a392c0947917e1374f7249b35318;hpb=56f6d0cdb88ef4a9fad5eca1d5ae2e04cb163dcd;p=citadel.git diff --git a/citadel/modules/fulltext/serv_fulltext.c b/citadel/modules/fulltext/serv_fulltext.c index 7943e344c..6288bfc9a 100644 --- a/citadel/modules/fulltext/serv_fulltext.c +++ b/citadel/modules/fulltext/serv_fulltext.c @@ -128,7 +128,7 @@ void ft_index_message(long msgnum, int op) { if (!CM_IsEmpty(msg, eSuppressIdx)) { syslog(LOG_DEBUG, "ft_index_message() excluded msg %ld", msgnum); - CtdlFreeMessage(msg); + CM_Free(msg); return; } @@ -139,7 +139,7 @@ void ft_index_message(long msgnum, int op) { */ CC->redirect_buffer = NewStrBufPlain(NULL, SIZ); CtdlOutputPreLoadedMsg(msg, MT_CITADEL, HEADERS_ALL, 0, 1, 0); - CtdlFreeMessage(msg); + CM_Free(msg); msgtext = CC->redirect_buffer; CC->redirect_buffer = NULL; if (msgtext != NULL) {