diff options
author | KUDr <kudr@openttd.org> | 2007-01-14 19:44:27 +0000 |
---|---|---|
committer | KUDr <kudr@openttd.org> | 2007-01-14 19:44:27 +0000 |
commit | 19d31c7417e4c8ad763c6674b7d1c6f9022e3703 (patch) | |
tree | eda839ff56efa72bca3f85d436b43aebe311798b | |
parent | 1eac31a1d89e09b9fc980fd7755a753e6ee54656 (diff) | |
download | openttd-19d31c7417e4c8ad763c6674b7d1c6f9022e3703.tar.xz |
(svn r8127) -Fix (r8125): removed redundant free() call which is also in Station destructor (Tron)
-rw-r--r-- | src/station_cmd.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 3757a0a75..f2b1a7397 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -70,8 +70,6 @@ static void StationPoolCleanBlock(uint start_item, uint end_item) for (i = start_item; i <= end_item; i++) { Station *st = GetStation(i); - free(st->speclist); - st->speclist = NULL; if (IsValidStation(st)) st->~Station(); } } |