Fix uninitialized length in X11_GetClipboardData causing test failures (#14322)

This commit is contained in:
DONGGEUN YOO 2025-10-25 10:41:58 -04:00 committed by GitHub
parent ac0915bdb5
commit 093fbfd867
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -273,6 +273,9 @@ bool X11_SetClipboardData(SDL_VideoDevice *_this)
void *X11_GetClipboardData(SDL_VideoDevice *_this, const char *mime_type, size_t *length)
{
SDL_VideoData *videodata = _this->internal;
*length = 0;
if (!SDL_HasInternalClipboardData(_this, mime_type)) {
// This mime type wasn't advertised by the last selection owner.
// The atom might still have data, but it's stale, so ignore it.