Fix #8169: nullptr dereference when autoreplacing vehicle with no orders (#9387)

pull/332/head
Jonathan G Rennison 3 years ago committed by GitHub
parent 052f6b5d9f
commit 8a33e98834
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -207,6 +207,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