decodeFromByteArray takes a length parameter with no check that it's within the bounds of the provided array, matching the same class of bug as the native/JNI parse(data, length) calls elsewhere in the codebase.
Needs a bounds check on the length argument.
decodeFromByteArraytakes alengthparameter with no check that it's within the bounds of the provided array, matching the same class of bug as the native/JNIparse(data, length)calls elsewhere in the codebase.Needs a bounds check on the length argument.