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 /util/stream/buffered.cpp | |
parent | 466f96709329ff77ded50177df94d1893a226c00 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/stream/buffered.cpp')
-rw-r--r-- | util/stream/buffered.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/util/stream/buffered.cpp b/util/stream/buffered.cpp index a00e592e1c4..2356522efd9 100644 --- a/util/stream/buffered.cpp +++ b/util/stream/buffered.cpp @@ -250,15 +250,15 @@ public: try { Flush(); } catch (...) { - try { + try { DoFinish(); - } catch (...) { + } catch (...) { // ¯\_(ツ)_/¯ - } - + } + throw; - } - + } + DoFinish(); } |