Fixed memory leak getting the X11 window title

main
Sam Lantinga 2014-08-25 10:55:54 -07:00
parent 05cff7923c
commit 66a88c6c97
1 changed files with 1 additions and 0 deletions

View File

@ -643,6 +643,7 @@ X11_GetWindowTitle(_THIS, Window xwindow)
&items_read, &items_left, &propdata);
if (status == Success && propdata) {
title = SDL_iconv_string("UTF-8", "", SDL_static_cast(char*, propdata), items_read+1);
X11_XFree(propdata);
} else {
title = SDL_strdup("");
}