# HG changeset patch # User KUDr # Date 1168803867 0 # Node ID 602e158900a2c74bc16de0a24a169d9c4d25f562 # Parent e0d30aba24a3a25f67352d7e92cfa65a5e427c5b (svn r8127) -Fix (r8125): removed redundant free() call which is also in Station destructor (Tron) diff -r e0d30aba24a3 -r 602e158900a2 src/station_cmd.cpp --- a/src/station_cmd.cpp Sun Jan 14 19:29:21 2007 +0000 +++ b/src/station_cmd.cpp Sun Jan 14 19:44:27 2007 +0000 @@ -70,8 +70,6 @@ for (i = start_item; i <= end_item; i++) { Station *st = GetStation(i); - free(st->speclist); - st->speclist = NULL; if (IsValidStation(st)) st->~Station(); } }