1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 11:33:03 +01:00

Fix potential nullptr dereference (#15134)

This commit is contained in:
ζeh Matt
2021-07-30 10:33:48 -07:00
committed by GitHub
parent 62d66ca9d0
commit 43b7c3a204

View File

@@ -266,7 +266,10 @@ GameActions::Result::Ptr LargeSceneryPlaceAction::Execute() const
isTree);
if (canBuild->Error != GameActions::Status::Ok)
{
DeleteBanner(banner->id);
if (banner != nullptr)
{
DeleteBanner(banner->id);
}
canBuild->ErrorTitle = STR_CANT_POSITION_THIS_HERE;
return canBuild;
}