-
Notifications
You must be signed in to change notification settings - Fork 67
Open
Description
If we provide a capacity too large, the program may crash.
The code to replay the crash is as below.
let capacity = 673957684733028;
let _ = json::object::Object::with_capacity(capacity);
I run the code on my x86-64 machine, ubuntu18.04, and the error report is
I think it's better to restrict the capacity and return a Result instead of letting it crash alone, especially on x64 machine, where the length of usize is 64bits.
The above is found by afl.rs.
Thanks a lot.
Metadata
Metadata
Assignees
Labels
No labels