Destroy mutex if strdup failed

Signed-off-by: npes87184 <npes87184@gmail.com>
pull/226/merge
npes87184 6 years ago committed by Romain Vimont
parent ec66b3be82
commit a3ab92226d

@ -69,6 +69,7 @@ SDL_bool installer_init(struct installer *installer, const char *serial) {
installer->serial = SDL_strdup(serial);
if (!installer->serial) {
LOGW("Cannot strdup serial");
SDL_DestroyMutex(installer->mutex);
return SDL_FALSE;
}
} else {

Loading…
Cancel
Save