Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sqlcipher/sqlcipher-android
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.7.1
Choose a base ref
...
head repository: sqlcipher/sqlcipher-android
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.7.2
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Mar 28, 2025

  1. Fix crash related to invalid RowSlot or RowSlotChunk pointers

    Details:
    Fix two issues where a RowSlot* or RowSlotChunk* could point
    to invalid addresses following a CursorWindow resize which moves
    the entire allocation block, invalidating the previous address.
    These scenarios could occur when a query required expanding the default
    CursorWindow size and the allocation occured on an edge boundary.
    This adjustment also allows us to remove the CURSOR_SIZE_EXTRA which
    caused the test `testManyRowsLong` to identify the RowSlotChunk issue.
    The test `shouldNotCauseRowSlotAllocationCrash` verified the fix
    for the RowSlot error.
    developernotes committed Mar 28, 2025
    Configuration menu
    Copy the full SHA
    f3475e8 View commit details
    Browse the repository at this point in the history
Loading