Kaynağa Gözat

Emscripten: Fixed memory leak if SDL_GetPrefPath() failed.

Philipp Wiesemann 10 yıl önce
ebeveyn
işleme
86fb92a7da

+ 1 - 0
src/filesystem/emscripten/SDL_sysfilesystem.c

@@ -57,6 +57,7 @@ SDL_GetPrefPath(const char *org, const char *app)
 
 
     if (mkdir(retval, 0700) != 0 && errno != EEXIST) {
     if (mkdir(retval, 0700) != 0 && errno != EEXIST) {
         SDL_SetError("Couldn't create directory '%s': '%s'", retval, strerror(errno));
         SDL_SetError("Couldn't create directory '%s': '%s'", retval, strerror(errno));
+        SDL_free(retval);
         return NULL;
         return NULL;
     }
     }