diff options
author | dmilideev <dmilideev@yandex-team.ru> | 2022-02-10 16:49:27 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:27 +0300 |
commit | 35f29a67a6b8e50e1826c837330086049114c5ba (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/binsaver/bin_saver.h | |
parent | 9795dc3ae7425582715fbeb9841992525a79ffd0 (diff) | |
download | ydb-35f29a67a6b8e50e1826c837330086049114c5ba.tar.gz |
Restoring authorship annotation for <dmilideev@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/binsaver/bin_saver.h')
-rw-r--r-- | library/cpp/binsaver/bin_saver.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/binsaver/bin_saver.h b/library/cpp/binsaver/bin_saver.h index 1f5cdc1d9b..412424889f 100644 --- a/library/cpp/binsaver/bin_saver.h +++ b/library/cpp/binsaver/bin_saver.h @@ -313,11 +313,11 @@ public: if (bRead) { ui64 size = 0; File.Read(&size, sizeof(size)); - TBuffer buffer; - buffer.Advance(size); + TBuffer buffer; + buffer.Advance(size); if (size > 0) File.Read(buffer.Data(), buffer.Size()); - (*blob) = TBlob::FromBuffer(buffer); + (*blob) = TBlob::FromBuffer(buffer); } else { const ui64 size = blob->Size(); File.Write(&size, sizeof(size)); |