mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
Prevent dereference after null check warning by Coverity
This commit is contained in:
parent
2aa095aa4b
commit
32234b44d3
@ -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…
x
Reference in New Issue
Block a user