Fix the StfsContainerEntry not being initialized in StfsContainerFile

This commit is contained in:
Marc-Antoine Levasseur 2015-12-31 13:02:24 -05:00
parent 9e82ccb8f0
commit f1829a5784
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;