mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
engine: server: don't pass uninitialized pointers to the server DLL in SetupVisibility function
This commit is contained in:
@@ -58,8 +58,8 @@ SV_AddEntitiesToPacket
|
||||
static void SV_AddEntitiesToPacket( edict_t *pViewEnt, edict_t *pClient, client_frame_t *frame, sv_ents_t *ents, qboolean from_client )
|
||||
{
|
||||
edict_t *ent;
|
||||
byte *clientpvs;
|
||||
byte *clientphs;
|
||||
byte *clientpvs = NULL;
|
||||
byte *clientphs = NULL;
|
||||
qboolean fullvis = false;
|
||||
sv_client_t *cl = NULL;
|
||||
qboolean player;
|
||||
|
||||
Reference in New Issue
Block a user