mirror of
https://github.com/nlohmann/json.git
synced 2025-07-13 20:21:48 +03:00
🐛 fixed a bug if parser was called with a stream at EOF (#367)
This commit is contained in:
@ -7892,7 +7892,10 @@ class basic_json
|
||||
// append n characters to make sure that there is sufficient
|
||||
// space between m_cursor and m_limit
|
||||
m_line_buffer.append(1, '\x00');
|
||||
m_line_buffer.append(n - 1, '\x01');
|
||||
if (n > 0)
|
||||
{
|
||||
m_line_buffer.append(n - 1, '\x01');
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user