Minor fixes.

This commit is contained in:
Dmitry 2019-07-29 23:11:49 +03:00 committed by jeefo
commit 829e724a2c
9 changed files with 127 additions and 97 deletions

View file

@ -275,7 +275,7 @@ public:
return false;
}
Array <uint8, ReservePolicy::PlusOne> buffer (m_chunkSize);
SmallArray <uint8> buffer (m_chunkSize);
m_code = parseResponseHeader (buffer.data ());
if (m_code != HttpClientResult::OK) {
@ -379,7 +379,7 @@ public:
return false;
}
Array <uint8, ReservePolicy::PlusOne> buffer (m_chunkSize);
SmallArray <uint8> buffer (m_chunkSize);
int32 length = 0;
for (;;) {