Fix #11819, aa5ba5b: Out-of-bounds access in linkgraph GUI. (#11821)

pull/642/head
frosch 5 months ago committed by GitHub
parent 2d77cf9c80
commit f457be5a27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -680,7 +680,7 @@ void LinkGraphLegendWindow::UpdateOverlayCompanies()
void LinkGraphLegendWindow::UpdateOverlayCargoes()
{
CargoTypes mask = 0;
for (CompanyID c = COMPANY_FIRST; c < MAX_COMPANIES; c++) {
for (uint c = 0; c < num_cargo; c++) {
if (!this->IsWidgetLowered(WID_LGL_CARGO_FIRST + c)) continue;
SetBit(mask, _sorted_cargo_specs[c]->Index());
}

Loading…
Cancel
Save