Browse Source

Fix bug in LoadMusicStream

free() and NULL at the end.
pull/607/head
Michael Vetter 6 years ago
parent
commit
186c1b157e
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/audio.c

+ 3
- 3
src/audio.c View File

@ -1437,9 +1437,6 @@ Music LoadMusicStream(const char *fileName)
if (!musicLoaded)
{
free(music);
music = NULL;
if (music->ctxType == MUSIC_AUDIO_OGG) stb_vorbis_close(music->ctxOgg);
#if defined(SUPPORT_FILEFORMAT_FLAC)
else if (music->ctxType == MUSIC_AUDIO_FLAC) drflac_free(music->ctxFlac);
@ -1454,6 +1451,9 @@ Music LoadMusicStream(const char *fileName)
else if (music->ctxType == MUSIC_MODULE_MOD) jar_mod_unload(&music->ctxMod);
#endif
free(music);
music = NULL;
TraceLog(LOG_WARNING, "[%s] Music file could not be opened", fileName);
}

Loading…
Cancel
Save