mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
Prevent dereference after null check warning
This commit is contained in:
parent
0e79c2c37e
commit
c6a1bcfcbe
@ -787,7 +787,7 @@ static INLINE int runloop_iterate_time_to_exit(bool quit_key_pressed)
|
|||||||
runloop_exec = false;
|
runloop_exec = false;
|
||||||
|
|
||||||
if (runloop_core_shutdown_initiated &&
|
if (runloop_core_shutdown_initiated &&
|
||||||
settings->load_dummy_on_core_shutdown)
|
settings && settings->load_dummy_on_core_shutdown)
|
||||||
{
|
{
|
||||||
content_ctx_info_t content_info = {0};
|
content_ctx_info_t content_info = {0};
|
||||||
if (!task_push_content_load_default(
|
if (!task_push_content_load_default(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user