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

Commit ce6578ac authored by Jeff Brown's avatar Jeff Brown Committed by Android Git Automerger
Browse files

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

* commit '84bee4f8':
  Fix copyStringToBuffer row index calculation. Bug: 5515552
parents c1a1cca8 84bee4f8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -468,7 +468,7 @@ public class CursorWindow extends SQLiteClosable implements Parcelable {
        }
        acquireReference();
        try {
            nativeCopyStringToBuffer(mWindowPtr, row, column, buffer);
            nativeCopyStringToBuffer(mWindowPtr, row - mStartPos, column, buffer);
        } finally {
            releaseReference();
        }