missed a few
authorArt Cancro <ajc@citadel.org>
Sat, 12 Dec 2020 23:25:51 +0000 (18:25 -0500)
committerArt Cancro <ajc@citadel.org>
Sat, 12 Dec 2020 23:25:51 +0000 (18:25 -0500)
webcit/messages.h
webcit/msg_renderers.c

index e9a3ebdc992c7797f3c3eac7246f2c850e71b99e..32a172a7bfa97a17669c3dbd8d7860faae16fb67 100644 (file)
@@ -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;
index 7bd99aff37fa497fc8b883670b6c8b37f90fe210..4be851de3c68e5d7b385ba2877450bd4cb80dbf0 100644 (file)
@@ -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);