mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
commit
864f0feedd
@ -453,7 +453,7 @@ void Text::ensureGeometryUpdate() const
|
||||
Uint32 curChar = m_string[i];
|
||||
|
||||
// Skip the \r char to avoid weird graphical issues
|
||||
if (curChar == '\r')
|
||||
if (curChar == L'\r')
|
||||
continue;
|
||||
|
||||
// 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> itEnd;
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user