Merge pull request #507 from marc0303/fixvfs
Fix the StfsContainerEntry not being initialized in StfsContainerFile
This commit is contained in:
commit
97e6389904
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue