From a1024c8fde713f544e3f8e5f9c29ef7512aeae54 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Sat, 29 Mar 2025 21:21:08 +0100 Subject: [PATCH] fix sdl primary clipboard text leak --- src/chat_gui4.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/chat_gui4.cpp b/src/chat_gui4.cpp index abf6d1c..38f6c22 100644 --- a/src/chat_gui4.cpp +++ b/src/chat_gui4.cpp @@ -525,9 +525,10 @@ float ChatGui4::render(float time_delta, bool window_hidden, bool window_focused if (!ImGui::IsItemFocused()) { ImGui::SetKeyboardFocusHere(-1); } - const char* primary_text = SDL_GetPrimarySelectionText(); + char* primary_text = SDL_GetPrimarySelectionText(); if (primary_text != nullptr) { ImGui::GetIO().AddInputCharactersUTF8(primary_text); + SDL_free(primary_text); } } }