From bcbebc5c1addc88a53287e7119cfd904ebea104c Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sun, 2 Apr 2023 19:18:45 +1000 Subject: [PATCH] - Blood: Fix potential null actor access in `gi->CanSave()`. --- source/games/blood/src/d_menu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/blood/src/d_menu.cpp b/source/games/blood/src/d_menu.cpp index c87f04cf3..6c5fd9cf4 100644 --- a/source/games/blood/src/d_menu.cpp +++ b/source/games/blood/src/d_menu.cpp @@ -161,7 +161,7 @@ void GameInterface::MenuClosed() bool GameInterface::CanSave() { - return (gamestate == GS_LEVEL && gPlayer[myconnectindex].actor->xspr.health != 0); + return gPlayer[myconnectindex].actor && gPlayer[myconnectindex].actor->xspr.health != 0; } FSavegameInfo GameInterface::GetSaveSig()