Closed nhartner closed 3 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 82.77%. Comparing base (
f50ad63
) to head (c79b2cf
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
The object length limit check was adding 2 int values which could result in an overflow exception, allowing very large lengths to bypass the limit enforcement. Now the limit check casts the value to a long before doing addition to avoid integer overflow.