Windows: Fix VDir unitialized variable

This commit is contained in:
Jeffrey Pfau 2016-12-31 01:35:21 -08:00
parent f5d9972d65
commit 6769fd7a31
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;
}