- Update to ZDoom r763

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@31 b0f79afe-0144-0410-b225-9a4edf0717df
This commit is contained in:
Christoph Oelckers 2008-02-22 09:00:45 +00:00
parent 4ff0621745
commit 30c4fbf193
9 changed files with 72 additions and 32 deletions

View file

@ -1545,7 +1545,7 @@ bool PO_Busy (int polyobj)
polyobj_t *poly;
poly = GetPolyobj (polyobj);
if (!poly->specialdata)
if (poly == NULL || poly->specialdata == NULL)
{
return false;
}