(svn r21605) -Fix [FS#4324]: crash due to cargo payments belonging to an non-existing company

This commit is contained in:
rubidium 2010-12-23 07:17:00 +00:00
parent 256fe89b38
commit e2a7ecbcae
1 changed files with 3 additions and 0 deletions

View File

@ -382,6 +382,9 @@ void ChangeOwnershipOfCompanyItems(Owner old_owner, Owner new_owner)
v->colourmap = PAL_NONE;
if (v->IsEngineCountable()) Company::Get(new_owner)->num_engines[v->engine_type]++;
if (v->IsPrimaryVehicle()) v->unitnumber = unitidgen[v->type].NextID();
/* Invalidate the vehicle's cargo payment "owner cache". */
if (v->cargo_payment != NULL) v->cargo_payment->owner = NULL;
}
}
}