Commit 8bfc622b181f800a66025689f248332dca1c31b1

Ryan C. Gordon 2015-05-31T21:50:50

Fixed memory leaks in testfilesystem.c (thanks, Nitz!). Fixes Bugzilla #2991.

diff --git a/test/testfilesystem.c b/test/testfilesystem.c
index 51767f7..e1660c8 100644
--- a/test/testfilesystem.c
+++ b/test/testfilesystem.c
@@ -32,7 +32,7 @@ main(int argc, char *argv[])
       return 0;
     }
 
-    SDL_Log("base path: '%s'\n", SDL_GetBasePath());
+    SDL_Log("base path: '%s'\n", base_path);
     SDL_free(base_path);
 
     char *pref_path = SDL_GetPrefPath("libsdl", "testfilesystem");
@@ -41,12 +41,9 @@ main(int argc, char *argv[])
                    SDL_GetError());
       return 0;
     }
-    SDL_Log("pref path: '%s'\n", SDL_GetPrefPath("libsdl", "testfilesystem"));
+    SDL_Log("pref path: '%s'\n", pref_path); 
     SDL_free(pref_path);
 
-    SDL_Log("base path: '%s'\n", SDL_GetBasePath());
-    SDL_Log("pref path: '%s'\n", SDL_GetPrefPath("libsdl", "testfilesystem"));
-
     SDL_Quit();
     return 0;
 }