mirror of https://github.com/encounter/SDL.git
Fixed bug 2989 - Memory loss in clipboard_testClipboardTextFunctions
This commit is contained in:
parent
507157abdb
commit
d88b6738f0
|
@ -103,6 +103,7 @@ clipboard_testClipboardTextFunctions(void *arg)
|
|||
intResult);
|
||||
charResult = SDL_GetClipboardText();
|
||||
SDLTest_AssertPass("Call to SDL_GetClipboardText succeeded");
|
||||
SDL_free(charResult);
|
||||
boolResult = SDL_HasClipboardText();
|
||||
SDLTest_AssertPass("Call to SDL_HasClipboardText succeeded");
|
||||
SDLTest_AssertCheck(
|
||||
|
@ -137,6 +138,7 @@ clipboard_testClipboardTextFunctions(void *arg)
|
|||
boolResult == SDL_TRUE,
|
||||
"Verify SDL_HasClipboardText returned SDL_TRUE, got %s",
|
||||
(boolResult) ? "SDL_TRUE" : "SDL_FALSE");
|
||||
SDL_free(charResult);
|
||||
charResult = SDL_GetClipboardText();
|
||||
SDLTest_AssertPass("Call to SDL_GetClipboardText succeeded");
|
||||
SDLTest_AssertCheck(
|
||||
|
|
Loading…
Reference in New Issue