Skip to content

Commit

Permalink
clipboard: Fixes additional x11 clipboard bugs found in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LiquidityC authored and slouken committed Jun 12, 2023
1 parent a2ba5e9 commit 6ab846b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions src/video/x11/SDL_x11clipboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ static void *GetSelectionData(SDL_VideoDevice *_this, Atom selection_type, size_
Uint64 waitStart;
Uint64 waitElapsed;

SDLX11_ClipboardData *clipboard;
void *data = NULL;
unsigned char *src = NULL;
Atom XA_MIME = X11_XInternAtom(display, mime_type, False);
Expand All @@ -185,12 +186,15 @@ static void *GetSelectionData(SDL_VideoDevice *_this, Atom selection_type, size_
} else if (owner == window) {
owner = DefaultRootWindow(display);
if (selection_type == XA_PRIMARY) {
src = videodata->primary_selection.callback(length, mime_type, videodata->primary_selection.userdata);
clipboard = &videodata->primary_selection;
} else {
src = videodata->clipboard.callback(length, mime_type, videodata->clipboard.userdata);
clipboard = &videodata->clipboard;
}

data = CloneDataBuffer(src, length, nullterminate);
if (clipboard->callback) {
src = clipboard->callback(length, mime_type, clipboard->userdata);
data = CloneDataBuffer(src, length, nullterminate);
}
} else {
/* Request that the selection owner copy the data to our window */
owner = window;
Expand Down Expand Up @@ -264,7 +268,7 @@ SDL_bool X11_HasClipboardData(SDL_VideoDevice *_this, const char *mime_type)
size_t length;
void *data;
data = X11_GetClipboardData(_this, &length, mime_type);
if (data != NULL && length > 0) {
if (data != NULL) {
SDL_free(data);
}
return length > 0;
Expand Down
2 changes: 1 addition & 1 deletion test/testautomation_clipboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static int clipboard_testHasClipboardText(void *arg)
static int clipboard_testHasClipboardData(void *arg)
{
SDL_HasClipboardData("image/png");
SDLTest_AssertPass("Call to SDL_HasClipboardText succeeded");
SDLTest_AssertPass("Call to SDL_HasClipboardData succeeded");

return TEST_COMPLETED;
}
Expand Down

0 comments on commit 6ab846b

Please sign in to comment.