From e63d975d6e81e67110dce31549957f4dcc2b13e8 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 11 Sep 2010 17:45:03 +0000 Subject: (svn r20785) -Fix: crash when closing the station view of oilrigs (similar to r20774) --- src/station_gui.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/station_gui.cpp') diff --git a/src/station_gui.cpp b/src/station_gui.cpp index 37ff622d3..c3d3d87fe 100644 --- a/src/station_gui.cpp +++ b/src/station_gui.cpp @@ -905,6 +905,8 @@ struct StationViewWindow : public Window { ~StationViewWindow() { Owner owner = Station::Get(this->window_number)->owner; + if (!Company::IsValidID(owner)) owner = _local_company; + if (!Company::IsValidID(owner)) return; // Spectators DeleteWindowById(WC_TRAINS_LIST, VehicleListIdentifier(VL_STATION_LIST, VEH_TRAIN, owner, this->window_number).Pack(), false); DeleteWindowById(WC_ROADVEH_LIST, VehicleListIdentifier(VL_STATION_LIST, VEH_ROAD, owner, this->window_number).Pack(), false); DeleteWindowById(WC_SHIPS_LIST, VehicleListIdentifier(VL_STATION_LIST, VEH_SHIP, owner, this->window_number).Pack(), false); -- cgit v1.2.3-54-g00ecf