Browse Source

http: fix uninitialized progress value

pull/2/head
mittorn 5 years ago
parent
commit
b1e3fa5f4d
  1. 2
      engine/common/net_ws.c

2
engine/common/net_ws.c

@ -2177,7 +2177,7 @@ void HTTP_Run( void ) @@ -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 )

Loading…
Cancel
Save