diff -r fa18f4352154 -r 92c69fcd0d61 src/station_gui.cpp --- 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(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(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];