(svn r6475) - Fix (r6055): Don't try to sort industries when there are none. Thanks to 'Delboy'

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
peter1138 18 years ago
parent 37e00dbef2
commit 6717160ebe

@ -556,6 +556,9 @@ static void MakeSortedIndustryList(void)
const Industry* i;
int n = 0;
/* Don't attempt a sort if there are no industries */
if (GetIndustryArraySize() == 0) return;
/* Create array for sorting */
_industry_sort = realloc((void *)_industry_sort, GetIndustryArraySize() * sizeof(_industry_sort[0]));
if (_industry_sort == NULL)

Loading…
Cancel
Save