SVN r65 (trunk)

This commit is contained in:
Christoph Oelckers 2006-04-23 09:02:19 +00:00
commit b229d07500
6 changed files with 17 additions and 7 deletions

View file

@ -292,7 +292,7 @@ void P_ProcessSwitchDef ()
{
free (def1);
}
free (picname);
delete [] picname;
return;
}
@ -316,7 +316,7 @@ void P_ProcessSwitchDef ()
def2->PairIndex = AddSwitchDef (def1);
def1->PairIndex = AddSwitchDef (def2);
def1->QuestPanel = def2->QuestPanel = quest;
free (picname);
delete [] picname;
}
FSwitchDef *ParseSwitchDef (bool ignoreBad)