Fix potential memory leak in SDL_AddHintCallback

This commit is contained in:
Mathieu Eyraud 2022-05-21 10:44:50 +02:00 committed by Sam Lantinga
parent e4b5afa576
commit fe46569cce

View file

@ -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;