Validate GetEntityHandle in FindEntityByNetClass (#1089)

This commit is contained in:
BotoX 2019-11-06 07:25:18 +01:00 committed by Kyle Sanderson
parent 23e1c0b71e
commit 3dd1e5a318

View File

@ -53,6 +53,10 @@ static CBaseEntity *FindEntityByNetClass(int start, const char *classname)
if (network == NULL)
continue;
IHandleEntity *pHandleEnt = network->GetEntityHandle();
if (pHandleEnt == NULL)
continue;
ServerClass *sClass = network->GetServerClass();
const char *name = sClass->GetName();