(svn r6475) - Fix (r6055): Don't try to sort industries when there are none. Thanks to 'Delboy'
authorpeter1138
Mon, 18 Sep 2006 06:34:37 +0000
changeset 4617 9711576cf148
parent 4616 baa9d4436b9e
child 4618 9fa09a3e653a
(svn r6475) - Fix (r6055): Don't try to sort industries when there are none. Thanks to 'Delboy'
industry_gui.c
--- a/industry_gui.c	Sun Sep 17 20:52:54 2006 +0000
+++ b/industry_gui.c	Mon Sep 18 06:34:37 2006 +0000
@@ -556,6 +556,9 @@
 	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)