From: Art Cancro Date: Sat, 12 Dec 2020 23:25:51 +0000 (-0500) Subject: missed a few X-Git-Tag: v939~197 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=0008163783f3a3b6605813f2db138903450f9ea7 missed a few --- diff --git a/webcit/messages.h b/webcit/messages.h index e9a3ebdc9..32a172a7b 100644 --- a/webcit/messages.h +++ b/webcit/messages.h @@ -58,23 +58,17 @@ typedef struct _message_summary { long reply_references_hash; StrBuf *ReplyTo; StrBuf *cccc; - StrBuf *hnod; StrBuf *AllRcpt; StrBuf *Room; StrBuf *Rfca; StrBuf *EnvTo; - StrBuf *OtherNode; const StrBuf *PartNum; - HashList *Attachments; /* list of attachments */ HashList *Submessages; HashList *AttachLinks; - HashList *AllAttach; - int hasattachments; - /* The mime part of the message */ wc_mime_attachment *MsgBody; } message_summary; diff --git a/webcit/msg_renderers.c b/webcit/msg_renderers.c index 7bd99aff3..4be851de3 100644 --- a/webcit/msg_renderers.c +++ b/webcit/msg_renderers.c @@ -52,13 +52,10 @@ void DestroyMessageSummary(void *vMsg) FreeStrBuf(&Msg->reply_references); FreeStrBuf(&Msg->cccc); FreeStrBuf(&Msg->ReplyTo); - FreeStrBuf(&Msg->hnod); FreeStrBuf(&Msg->AllRcpt); FreeStrBuf(&Msg->Room); FreeStrBuf(&Msg->Rfca); FreeStrBuf(&Msg->EnvTo); - FreeStrBuf(&Msg->OtherNode); - DeleteHash(&Msg->Attachments); /* list of Attachments */ DeleteHash(&Msg->Submessages); DeleteHash(&Msg->AttachLinks);