(svn r12005) -Fix [FS#1717]: possible reading from an invalid pointer. Patch by PhilSophus.

pull/155/head
rubidium 17 years ago
parent 1b7051768c
commit 7c310600ba

@ -262,8 +262,8 @@ bool LoadNextSprite(int load_index, byte file_slot, uint file_sprite_id)
void DupSprite(SpriteID old_spr, SpriteID new_spr)
{
SpriteCache *scnew = AllocateSpriteCache(new_spr); // may reallocate: so put it first
SpriteCache *scold = GetSpriteCache(old_spr);
SpriteCache *scnew = AllocateSpriteCache(new_spr);
scnew->file_slot = scold->file_slot;
scnew->file_pos = scold->file_pos;

Loading…
Cancel
Save