mirror of https://github.com/mgba-emu/mgba.git
Windows: Fix VDir unitialized variable
This commit is contained in:
parent
f5d9972d65
commit
6769fd7a31
|
@ -63,6 +63,7 @@ struct VDir* VDirOpen(const char* path) {
|
||||||
vd->vde.d.name = _vdweName;
|
vd->vde.d.name = _vdweName;
|
||||||
vd->vde.d.type = _vdweType;
|
vd->vde.d.type = _vdweType;
|
||||||
vd->vde.ffData = ffData;
|
vd->vde.ffData = ffData;
|
||||||
|
vd->vde.utf8Name = NULL;
|
||||||
|
|
||||||
return &vd->d;
|
return &vd->d;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue