diff options
| author | vmordovin <[email protected]> | 2022-02-10 16:48:14 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:48:14 +0300 | 
| commit | 7c7f9bbcf57e15838d15afa94b31d8254b5d7776 (patch) | |
| tree | 17073f853e6b3a1a95708e8aa0ea12fa42a717e7 /library/cpp/streams/lzma/lzma.cpp | |
| parent | 466f96709329ff77ded50177df94d1893a226c00 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/streams/lzma/lzma.cpp')
| -rw-r--r-- | library/cpp/streams/lzma/lzma.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/streams/lzma/lzma.cpp b/library/cpp/streams/lzma/lzma.cpp index f1942fa546e..011b450436c 100644 --- a/library/cpp/streams/lzma/lzma.cpp +++ b/library/cpp/streams/lzma/lzma.cpp @@ -495,10 +495,10 @@ void TLzmaCompress::DoWrite(const void* buf, size_t len) {  }  void TLzmaCompress::DoFinish() { -    THolder<TImpl> impl(Impl_.Release()); - +    THolder<TImpl> impl(Impl_.Release());  +       if (impl) { -        impl->Finish(); +        impl->Finish();       }  }  | 
