mirror of
https://github.com/nlohmann/json.git
synced 2025-07-12 09:21:42 +03:00
🚑 fix for #405
This commit is contained in:
@ -6871,6 +6871,12 @@ class basic_json
|
||||
{
|
||||
throw std::out_of_range("len+offset out of range");
|
||||
}
|
||||
|
||||
// last case: reading past the end of the vector
|
||||
if (len + offset > size)
|
||||
{
|
||||
throw std::out_of_range("len+offset out of range");
|
||||
}
|
||||
}
|
||||
|
||||
/*!
|
||||
|
Reference in New Issue
Block a user