Skip to content

Commit

Permalink
fix(Stream): fix more mmap-disabled issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed Jun 7, 2024
1 parent 140fcd7 commit da7f3c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Vfs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ namespace zenkit {
stream.read((char*) data.get(), size);

parent->create(VfsNode::file(path.filename().string(),
VfsFileDescriptor {data.get(), static_cast<size_t>(size)},
VfsFileDescriptor {data.get(), static_cast<size_t>(size), false},
time.count()));
#endif
}
Expand Down

0 comments on commit da7f3c4

Please sign in to comment.