1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-24 15:09:10 +00:00

(svn r8127) -Fix (r8125): removed redundant free() call which is also in Station destructor (Tron)

This commit is contained in:
KUDr
2007-01-14 19:44:27 +00:00
parent 1eac31a1d8
commit 19d31c7417

View File

@@ -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();
}
}