Browse Source

Fix potential memory leak in SDL_AddHintCallback

Mathieu Eyraud 3 years ago
parent
commit
fe46569cce
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/SDL_hints.c

+ 1 - 0
src/SDL_hints.c

@@ -179,6 +179,7 @@ SDL_AddHintCallback(const char *name, SDL_HintCallback callback, void *userdata)
         }
         hint->name = SDL_strdup(name);
         if (!hint->name) {
+            SDL_free(entry);
             SDL_free(hint);
             SDL_OutOfMemory();
             return;