mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix usage of uninitialized value
git-svn-id: https://svn.eduke32.com/eduke32@4638 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
cb02cdc571
commit
2631da8822
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ static int32_t _internal_osdfunc_echo(const osdfuncparm_t *parm)
|
|||
|
||||
static int32_t _internal_osdfunc_fileinfo(const osdfuncparm_t *parm)
|
||||
{
|
||||
uint32_t crc, length;
|
||||
uint32_t crc = 0, length;
|
||||
int32_t i,j;
|
||||
char buf[256];
|
||||
void *xxh;
|
||||
|
|
Loading…
Reference in a new issue