diff options
author | luchko <luchko@yandex-team.ru> | 2022-02-10 16:48:21 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:21 +0300 |
commit | 9f21dcc5d3d7c6e54e7adbaa2abaa6d86ae08c59 (patch) | |
tree | fe8d90bbd8376a597fb16b369d09be5fa22eedce /library/cpp/http/fetch/httpzreader.h | |
parent | 20fb5622594feb17be2ce26b99ddd6f60a870b3a (diff) | |
download | ydb-9f21dcc5d3d7c6e54e7adbaa2abaa6d86ae08c59.tar.gz |
Restoring authorship annotation for <luchko@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http/fetch/httpzreader.h')
-rw-r--r-- | library/cpp/http/fetch/httpzreader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/http/fetch/httpzreader.h b/library/cpp/http/fetch/httpzreader.h index 68eb00853d6..963fc27c759 100644 --- a/library/cpp/http/fetch/httpzreader.h +++ b/library/cpp/http/fetch/httpzreader.h @@ -96,9 +96,9 @@ public: void* tmpin = Stream.next_in; long res = TBase::Read(tmpin); Stream.next_in = (Bytef*)tmpin; - if (res <= 0) - return res; - Stream.avail_in = (uInt)res; + if (res <= 0) + return res; + Stream.avail_in = (uInt)res; } Stream.next_out = Buf; |