src/station_gui.cpp
changeset 8536 95419f22b9ab
parent 8512 e77c8fb7c0ed
child 8537 0b4ab7d8b018
--- a/src/station_gui.cpp	Sat Dec 08 15:21:37 2007 +0000
+++ b/src/station_gui.cpp	Sat Dec 08 15:47:23 2007 +0000
@@ -228,7 +228,6 @@
 
 	/* Create array for sorting */
 	const Station** station_sort = MallocT<const Station*>(GetMaxStationIndex() + 1);
-	if (station_sort == NULL) error("Could not allocate memory for the station-sorting-list");
 
 	DEBUG(misc, 3, "Building station list for player %d", owner);
 
@@ -255,7 +254,6 @@
 
 	free((void*)sl->sort_list);
 	sl->sort_list = MallocT<const Station*>(n);
-	if (n != 0 && sl->sort_list == NULL) error("Could not allocate memory for the station-sorting-list");
 	sl->list_length = n;
 
 	for (uint i = 0; i < n; ++i) sl->sort_list[i] = station_sort[i];