Skip to content

Commit

Permalink
Fix #7593: Crash in ScriptOrder::GetOrderDistance in VT_AIR mode
Browse files Browse the repository at this point in the history
Null pointer dereference occurred when either origin_tile or dest_tile
were waypoint tiles.
  • Loading branch information
JGRennison authored and LordAro committed Jul 7, 2019
1 parent aee3e4e commit 3bea58b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/script/api/script_order.cpp
Expand Up @@ -667,8 +667,10 @@ static void _DoCommandReturnSetOrderFlags(class ScriptInstance *instance)
/* static */ uint ScriptOrder::GetOrderDistance(ScriptVehicle::VehicleType vehicle_type, TileIndex origin_tile, TileIndex dest_tile)
{
if (vehicle_type == ScriptVehicle::VT_AIR) {
if (ScriptTile::IsStationTile(origin_tile) && ::Station::GetByTile(origin_tile)->airport.tile != INVALID_TILE) origin_tile = ::Station::GetByTile(origin_tile)->airport.tile;
if (ScriptTile::IsStationTile(dest_tile) && ::Station::GetByTile(dest_tile)->airport.tile != INVALID_TILE) dest_tile = ::Station::GetByTile(dest_tile)->airport.tile;
Station *orig_station = ::Station::GetByTile(origin_tile);
Station *dest_station = ::Station::GetByTile(dest_tile);
if (orig_station != nullptr && orig_station->airport.tile != INVALID_TILE) origin_tile = orig_station->airport.tile;
if (dest_station != nullptr && dest_station->airport.tile != INVALID_TILE) dest_tile = dest_station->airport.tile;

return ScriptMap::DistanceSquare(origin_tile, dest_tile);
} else {
Expand Down

0 comments on commit 3bea58b

Please sign in to comment.