diff options
| -rw-r--r-- | library/cpp/http/io/headers.cpp | 14 | ||||
| -rw-r--r-- | library/cpp/http/io/stream_ut.cpp | 2 | ||||
| -rw-r--r-- | library/cpp/messagebus/locator.cpp | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/http/io/headers.cpp b/library/cpp/http/io/headers.cpp index fdef43cc017..4ec27a29e83 100644 --- a/library/cpp/http/io/headers.cpp +++ b/library/cpp/http/io/headers.cpp @@ -46,15 +46,15 @@ THttpHeaders::THttpHeaders(IInputStream* stream) { TString header; TString line; - bool rdOk = stream->ReadLine(header); - while (rdOk && !header.empty()) { - rdOk = stream->ReadLine(line); + bool rdOk = stream->ReadLine(header); + while (rdOk && !header.empty()) { + rdOk = stream->ReadLine(line); - if (rdOk && ((line[0] == ' ') || (line[0] == '\t'))) { - header += line; - } else { + if (rdOk && ((line[0] == ' ') || (line[0] == '\t'))) { + header += line; + } else { AddHeader(THttpInputHeader(header)); - header = line; + header = line; } } } diff --git a/library/cpp/http/io/stream_ut.cpp b/library/cpp/http/io/stream_ut.cpp index e9077bb5f4b..1ea35df675a 100644 --- a/library/cpp/http/io/stream_ut.cpp +++ b/library/cpp/http/io/stream_ut.cpp @@ -327,7 +327,7 @@ Y_UNIT_TEST_SUITE(THttpStreamTest) { const char* body = "<html>Hello</html>"; httpOut << body; UNIT_ASSERT_VALUES_EQUAL(str.size(), 0u); - + httpOut.Flush(); UNIT_ASSERT_VALUES_EQUAL(checkStr.size(), str.size()); } diff --git a/library/cpp/messagebus/locator.cpp b/library/cpp/messagebus/locator.cpp index c766537560f..e38a35c426f 100644 --- a/library/cpp/messagebus/locator.cpp +++ b/library/cpp/messagebus/locator.cpp @@ -242,7 +242,7 @@ namespace NBus { --last; Y_ASSERT(Items.end() != last); Y_ASSERT(last->ServiceId == serviceId); - + TItem& beg = const_cast<TItem&>(*first); beg.Addr = last->Addr; } |
