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

Commit 84bee4f8 authored by Jeff Brown's avatar Jeff Brown Committed by Android (Google) Code Review
Browse files

Merge "Fix copyStringToBuffer row index calculation. Bug: 5515552" into ics-mr0

parents c43b9b6d 0772007b
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();
        }