🚑 fix for #405

This commit is contained in:
Niels Lohmann 2016-12-29 15:39:16 +01:00
parent 8381cd6020
commit 871cebaf84
3 changed files with 19 additions and 0 deletions

View file

@ -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");
}
}
/*!

View file

@ -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");
}
}
/*!