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

This commit is contained in:
rubidium 2008-01-29 00:29:28 +00:00
parent 3b2145aafe
commit c9a9103566
1 changed files with 1 additions and 1 deletions

View File

@ -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;