http: fix uninitialized progress value

This commit is contained in:
mittorn 2019-02-05 01:11:12 +07:00
parent e99ca5947b
commit b1e3fa5f4d
1 changed files with 1 additions and 1 deletions

View File

@ -2177,7 +2177,7 @@ void HTTP_Run( void )
httpfile_t *curfile;
int iActiveCount = 0;
int iProgressCount = 0;
float flProgress;
float flProgress = 0;
qboolean fResolving = false;
for( curfile = http.first_file; curfile; curfile = curfile->next )