mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 12:51:05 +08:00
Merge branch '2.6.x'
This commit is contained in:
commit
417f003224
@ -453,7 +453,7 @@ void Text::ensureGeometryUpdate() const
|
|||||||
Uint32 curChar = m_string[i];
|
Uint32 curChar = m_string[i];
|
||||||
|
|
||||||
// Skip the \r char to avoid weird graphical issues
|
// Skip the \r char to avoid weird graphical issues
|
||||||
if (curChar == '\r')
|
if (curChar == L'\r')
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// Apply the kerning offset
|
// Apply the kerning offset
|
||||||
|
@ -246,7 +246,10 @@ void Http::Response::parse(const std::string& data)
|
|||||||
std::istreambuf_iterator<char> it(in);
|
std::istreambuf_iterator<char> it(in);
|
||||||
std::istreambuf_iterator<char> itEnd;
|
std::istreambuf_iterator<char> itEnd;
|
||||||
for (std::size_t i = 0; ((i < length) && (it != itEnd)); ++i)
|
for (std::size_t i = 0; ((i < length) && (it != itEnd)); ++i)
|
||||||
m_body.push_back(*it++);
|
{
|
||||||
|
m_body.push_back(*it);
|
||||||
|
++it; // Iterate in separate expression to work around false positive -Wnull-dereference warning in GCC 12.1.0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Drop the rest of the line (chunk-extension)
|
// Drop the rest of the line (chunk-extension)
|
||||||
|
Loading…
Reference in New Issue
Block a user