mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Mod_LoadFlexModel fix uninit var
This commit is contained in:
parent
412ea8406a
commit
34830efda1
1 changed files with 1 additions and 1 deletions
|
@ -724,7 +724,7 @@ Mod_LoadFlexModel(const char *mod_name, const void *buffer, int modfilelen,
|
|||
{
|
||||
char *src = (char *)buffer;
|
||||
int version, size, i;
|
||||
void *extradata;
|
||||
void *extradata = NULL;
|
||||
dmdl_t *pheader = NULL;
|
||||
|
||||
while (modfilelen > 0)
|
||||
|
|
Loading…
Reference in a new issue