mirror of
https://github.com/yquake2/ref_vk.git
synced 2024-11-09 22:31:34 +00:00
Mod_LoadFlexModel fix uninit var
This commit is contained in:
parent
c6ce695406
commit
3950773186
1 changed files with 1 additions and 1 deletions
|
@ -716,7 +716,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