mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Prevent dereference after null check warning by Coverity
This commit is contained in:
parent
2aa095aa4b
commit
32234b44d3
1 changed files with 2 additions and 1 deletions
|
@ -522,7 +522,8 @@ static bool audio_mixer_play_mod(
|
|||
error:
|
||||
if (mod_buffer)
|
||||
memalign_free(mod_buffer);
|
||||
dispose_module(module);
|
||||
if (module)
|
||||
dispose_module(module);
|
||||
return false;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue