Browse Source

Fixed memory leak getting the X11 window title

Sam Lantinga 10 years ago
parent
commit
66a88c6c97
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/video/x11/SDL_x11window.c

+ 1 - 0
src/video/x11/SDL_x11window.c

@@ -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("");
         }