mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-02-12 06:42:29 +00:00
Fixed missing initialization of idPack and missionPack variables which may result in failure to autodownload files from the server even if legitimate.
This commit is contained in:
parent
a08a539c10
commit
6fe78df757
1 changed files with 1 additions and 1 deletions
|
@ -756,7 +756,7 @@ void SV_WriteDownloadToClient( client_t *cl , msg_t *msg )
|
||||||
int curindex;
|
int curindex;
|
||||||
int rate;
|
int rate;
|
||||||
int blockspersnap;
|
int blockspersnap;
|
||||||
int idPack, missionPack, unreferenced = 1;
|
int idPack = 0, missionPack = 0, unreferenced = 1;
|
||||||
char errorMessage[1024];
|
char errorMessage[1024];
|
||||||
char pakbuf[MAX_QPATH], *pakptr;
|
char pakbuf[MAX_QPATH], *pakptr;
|
||||||
int numRefPaks;
|
int numRefPaks;
|
||||||
|
|
Loading…
Reference in a new issue