-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integer overflow potential in SortedRanges.subRangeByPos #664
Comments
jcferretti
pushed a commit
to jcferretti/deephaven-core
that referenced
this issue
May 24, 2021
devinrsmith
added a commit
to devinrsmith/deephaven-core
that referenced
this issue
May 25, 2021
…-check * upstream/main: Check documentation labels, fixes deephaven#627 (deephaven#671) Fix integer overflow in SortedRanges.invertOnNew. Fixes deephaven#666. (deephaven#667) Fix integer overflow in SortedRanges.subRangeByPos. Fixes deephaven#664 (deephaven#665) Deploy example scripts and data (deephaven#562) port the numba integration prototype from Enterprise to OSS, fixes feature-523 (deephaven#638) Fix IllegalStateException in TwoValuesContainer triggered from Index.insert(Chunk). Fixes deephaven#652. (deephaven#653) Javadoc search (deephaven#645) Support for jpy integration junit tests (deephaven#632) Populate snapshot request in js api, handle optional left table (deephaven#648) Fix a link formatting bug in CONTRIBUTING.md (deephaven#629)
devinrsmith
added a commit
to devinrsmith/deephaven-core
that referenced
this issue
May 28, 2021
* tag 'v0.0.2': (29 commits) Move label information to CI remove labels try pushing to my own org try actor Upgrade to GITHUB_TOKEN instead of PAT Explicit about docker/build-push-action version Explicit about docker/login-action version Explicit about docker/setup-buildx-action version Remove extraneous comments Update docker metadata steps Remove top level building of deephaven-jpy in CI, is handled implicitly in grpc-api step Fix nightly check (deephaven#641) Address `QueryTableTest.testReverseClipping` table reachability bug, and unit test listeners using `RetentionCache` (deephaven#644) Rename symbols in .proto files to follow standard conventions (deephaven#674) Check documentation labels, fixes deephaven#627 (deephaven#671) Fix integer overflow in SortedRanges.invertOnNew. Fixes deephaven#666. (deephaven#667) Fix integer overflow in SortedRanges.subRangeByPos. Fixes deephaven#664 (deephaven#665) Deploy example scripts and data (deephaven#562) port the numba integration prototype from Enterprise to OSS, fixes feature-523 (deephaven#638) Fix IllegalStateException in TwoValuesContainer triggered from Index.insert(Chunk). Fixes deephaven#652. (deephaven#653) ...
jmao-denver
pushed a commit
to jmao-denver/deephaven-core
that referenced
this issue
Apr 11, 2022
… (deephaven#665) Co-authored-by: Cristian Ferretti <cristianferretti@illumon.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The code:
has the potential to leave ansLen negative is inputRangeSpan + 1 does not fit on an int.
Charles found the issue after looking for a potential root cause for this exception seen in the wild:
The text was updated successfully, but these errors were encountered: