Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0772007b authored by Jeff Brown's avatar Jeff Brown
Browse files

Fix copyStringToBuffer row index calculation.

Bug: 5515552

Change-Id: I60aa25d2becd3195d6997d23ef5654a31e93bf71
parent 60912254
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -478,7 +478,7 @@ public class CursorWindow extends SQLiteClosable implements Parcelable {
        }
        acquireReference();
        try {
            nativeCopyStringToBuffer(mWindowPtr, row, column, buffer);
            nativeCopyStringToBuffer(mWindowPtr, row - mStartPos, column, buffer);
        } finally {
            releaseReference();
        }