From 5fd13fa47a5c6d40ab2e8f6572d321cda666aba0 Mon Sep 17 00:00:00 2001 From: "me@ow.nekobit.net" Date: Mon, 2 May 2022 17:08:10 +0000 Subject: [PATCH] Fix emoji memory leak FossilOrigin-Name: d8dc1cb1f1eb47d876960c478fd4db6be7f0060e1494fb6fbc3ce08b35003749 --- src/status.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/status.c b/src/status.c index c6c5729..002297f 100644 --- a/src/status.c +++ b/src/status.c @@ -547,6 +547,7 @@ void mstdnt_cleanup_status(struct mstdnt_status* status) { cleanup_attachments(status->media_attachments); cleanup_status_pleroma(&(status->pleroma)); + cleanup_emojis(status->emojis); if (status->reblog) free(status->reblog); }