Skip to content

Commit 5c9fb8f

Browse files
Green-Skyocornut
authored andcommitted
Backends: SDL3: Update for API changes: Revert SDL_GetClipboardText() memory ownership change. (#8530, #7801)
see libsdl-org/SDL#10390
1 parent 7674cbc commit 5c9fb8f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

backends/imgui_impl_sdl3.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
// CHANGELOG
2222
// (minor and older changes stripped away, please see git history for details)
23+
// 2025-03-30: Update for SDL3 api changes: Revert SDL_GetClipboardText() memory ownership change. (#8530, #7801)
2324
// 2025-03-21: Fill gamepad inputs and set ImGuiBackendFlags_HasGamepad regardless of ImGuiConfigFlags_NavEnableGamepad being set.
2425
// 2025-03-10: When dealing with OEM keys, use scancodes instead of translated keycodes to choose ImGuiKey values. (#7136, #7201, #7206, #7306, #7670, #7672, #8468)
2526
// 2025-02-26: Only start SDL_CaptureMouse() when mouse is being dragged, to mitigate issues with e.g.Linux debuggers not claiming capture back. (#6410, #3650)
@@ -133,8 +134,7 @@ static const char* ImGui_ImplSDL3_GetClipboardText(ImGuiContext*)
133134
ImGui_ImplSDL3_Data* bd = ImGui_ImplSDL3_GetBackendData();
134135
if (bd->ClipboardTextData)
135136
SDL_free(bd->ClipboardTextData);
136-
const char* sdl_clipboard_text = SDL_GetClipboardText();
137-
bd->ClipboardTextData = sdl_clipboard_text ? SDL_strdup(sdl_clipboard_text) : nullptr;
137+
bd->ClipboardTextData = SDL_GetClipboardText();
138138
return bd->ClipboardTextData;
139139
}
140140

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ Other changes:
5959
- Misc: added extra operators to ImVec4 in IMGUI_DEFINE_MATH_OPERATORS block. (#8510) [@gan74]
6060
- Backends: SDL2, SDL3, OSX: Fill gamepad inputs and set ImGuiBackendFlags_HasGamepad
6161
regardless of ImGuiConfigFlags_NavEnableGamepad being set. (#8508)
62+
- Backends: SDL3: Update for SDL3 api changes: revert SDL_GetClipboardText()
63+
memory ownership change. (#8530, #7801) [@Green-Sky]
6264

6365

6466
-----------------------------------------------------------------------

0 commit comments

Comments
 (0)