From f21b5e4d2fb53e692988e01bf4f5b4957dd9422c Mon Sep 17 00:00:00 2001 From: LeaoLuciano Date: Thu, 28 Oct 2021 07:51:48 -0300 Subject: Fix memory leak in RichTextLabel.remove_line --- scene/gui/rich_text_label.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index f1efbbda98..ddcc5407dc 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -2346,6 +2346,7 @@ void RichTextLabel::_remove_item(Item *p_item, const int p_line, const int p_sub // Then remove the provided item itself. p_item->parent->subitems.erase(p_item); } + memdelete(p_item); } void RichTextLabel::add_image(const Ref &p_image, const int p_width, const int p_height, const Color &p_color, InlineAlign p_align) { -- cgit v1.2.3