Merge pull request #507 from marc0303/fixvfs

Fix the StfsContainerEntry not being initialized in StfsContainerFile
This commit is contained in:
Ben Vanik 2015-12-31 10:13:17 -08:00
commit 97e6389904
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ namespace vfs {
StfsContainerFile::StfsContainerFile(uint32_t file_access,
StfsContainerEntry* entry)
: File(file_access, entry) {}
: File(file_access, entry), entry_(entry) {}
StfsContainerFile::~StfsContainerFile() = default;