Windows: Fix VDir unitialized variable

This commit is contained in:
Jeffrey Pfau 2016-12-31 01:29:03 -08:00
parent 978349d765
commit 2c52c55efc
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ struct VDir* VDirOpen(const char* path) {
vd->vde.d.name = _vdweName;
vd->vde.d.type = _vdweType;
vd->vde.ffData = ffData;
vd->vde.utf8Name = NULL;
return &vd->d;
}