Validate GetEntityHandle in FindEntityByNetClass (#1089)

This commit is contained in:
BotoX
2019-11-05 22:25:18 -08:00
committed by Kyle Sanderson
parent 23e1c0b71e
commit 3dd1e5a318
+4
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();