(svn r22760) -Fix (r19459): Also free allocated depot tables.

This commit is contained in:
alberth
2011-08-19 20:44:22 +00:00
parent 418422c5b5
commit 73c88aa019

View File

@@ -7256,6 +7256,7 @@ static void ResetCustomAirports()
free((void*)as->table[j]); free((void*)as->table[j]);
} }
free((void*)as->table); free((void*)as->table);
free((void*)as->depot_table);
free(as); free(as);
} }