changeset 15909:5502a60796ad draft

(svn r20593) -Fix: (rlongago, r20547): long ago the service interval was int16, after which is got converted to Date except in the order backup. Much later I copied the savegame snippets from a vehicle and applied that on the order backup. Presto, reading/writing 32 bits (of Date) into 16 bits of ancient style service interval. That would then "spoil" the name pointer and that eventually crashes OpenTTD as it's likely to be an invalid pointer.
author rubidium <rubidium@openttd.org>
date Sun, 22 Aug 2010 16:47:26 +0000
parents 434567b681a8
children e9c3b5b33d92
files src/order_backup.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/order_backup.h
+++ b/src/order_backup.h
@@ -42,7 +42,7 @@
 	uint32 user;               ///< The user that requested the backup.
 	TileIndex tile;            ///< Tile of the depot where the order was changed.
 	GroupID group;             ///< The group the vehicle was part of.
-	uint16 service_interval;   ///< The service interval of the vehicle.
+	Date service_interval;     ///< The service interval of the vehicle.
 	char *name;                ///< The custom name of the vehicle.
 
 	const Vehicle *clone;      ///< Vehicle this vehicle was a clone of.