Changeset - r19799:a3fcfb29a1e8
[Not reviewed]
master
0 1 0
rubidium - 12 years ago 2012-11-18 16:14:31
rubidium@openttd.org
(svn r24754) -Fix [FS#5367]: crash on corrupted savegame
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/saveload/saveload.cpp
Show inline comments
 
@@ -1913,7 +1913,7 @@ struct LZOLoadFilter : LoadFilter {
 
		if (tmp[0] != lzo_adler32(0, out, size + sizeof(uint32))) SlErrorCorrupt("Bad checksum");
 

	
 
		/* Decompress */
 
		lzo1x_decompress(out + sizeof(uint32) * 1, size, buf, &len, NULL);
 
		lzo1x_decompress_safe(out + sizeof(uint32) * 1, size, buf, &len, NULL);
 
		return len;
 
	}
 
};
0 comments (0 inline, 0 general)