Skip to content

Commit

Permalink
Retesting build on github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Sep 17, 2024
1 parent 072096b commit c621daa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/src/Session.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ void Session::doRead()
auto bufLen = bytesCount;
bool useVector = !m_inData.empty();
if (useVector) {
m_inData.reserve(m_inData.size() + bufLen);
m_inData.insert(m_inData.end(), buf, buf + bufLen);
buf = &m_inData[0];
bufLen = m_inData.size();
Expand Down

0 comments on commit c621daa

Please sign in to comment.