[client] main: fix possible dereference of null g_state.ds

This commit is contained in:
Geoffrey McRae 2023-11-11 13:15:39 +11:00
parent 120e063a10
commit 0a9784d09d

View file

@ -1816,7 +1816,7 @@ static void lg_shutdown(void)
app_releaseAllKeybinds();
ll_free(g_state.bindings);
if (g_state.dsInitialized)
if (g_state.ds && g_state.dsInitialized)
g_state.ds->free();
ivshmemClose(&g_state.shm);