Loading fs_mgr/libsnapshot/snapshot_writer.cpp +3 −0 Original line number Diff line number Diff line Loading @@ -93,6 +93,9 @@ bool CompressedSnapshotWriter::VerifyMergeOps() const noexcept { std::unique_ptr<FileDescriptor> CompressedSnapshotWriter::OpenReader() { auto cow = OpenCowReader(); if (cow == nullptr) { return nullptr; } auto reader = std::make_unique<CompressedSnapshotReader>(); if (!reader->SetCow(std::move(cow))) { Loading Loading
fs_mgr/libsnapshot/snapshot_writer.cpp +3 −0 Original line number Diff line number Diff line Loading @@ -93,6 +93,9 @@ bool CompressedSnapshotWriter::VerifyMergeOps() const noexcept { std::unique_ptr<FileDescriptor> CompressedSnapshotWriter::OpenReader() { auto cow = OpenCowReader(); if (cow == nullptr) { return nullptr; } auto reader = std::make_unique<CompressedSnapshotReader>(); if (!reader->SetCow(std::move(cow))) { Loading