Fix nullptr dereference when autoreplacing vehicle with no orders

In GetIncompatibleRefitOrderIdForAutoreplace
pull/288/head
Jonathan G Rennison 3 years ago
parent 6c7fccff5d
commit 4577b547ea

@ -208,6 +208,7 @@ static int GetIncompatibleRefitOrderIdForAutoreplace(const Vehicle *v, EngineID
const Vehicle *u = (v->type == VEH_TRAIN) ? v->First() : v;
const OrderList *orders = u->orders.list;
if (orders == nullptr) return -1;
for (VehicleOrderID i = 0; i < orders->GetNumOrders(); i++) {
o = orders->GetOrderAt(i);
if (!o->IsRefit()) continue;

Loading…
Cancel
Save