mirror of
https://github.com/akheron/jansson.git
synced 2025-04-06 05:55:05 +00:00
Fix an off-by-one error
This commit is contained in:
parent
08be94e8e6
commit
30a4c88843
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ int hashtable_set(hashtable_t *hashtable,
|
|||
allocated. */
|
||||
|
||||
size_t len = strlen(key);
|
||||
if(len > (size_t)-1 - offsetof(pair_t, key)) {
|
||||
if(len >= (size_t)-1 - offsetof(pair_t, key)) {
|
||||
/* Avoid an overflow if the key is very long */
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue