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:
Thilo Schulz 2006-05-15 19:50:44 +00:00
parent a08a539c10
commit 6fe78df757

View file

@ -756,7 +756,7 @@ void SV_WriteDownloadToClient( client_t *cl , msg_t *msg )
int curindex;
int rate;
int blockspersnap;
int idPack, missionPack, unreferenced = 1;
int idPack = 0, missionPack = 0, unreferenced = 1;
char errorMessage[1024];
char pakbuf[MAX_QPATH], *pakptr;
int numRefPaks;