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

Commit f74461a6 authored by Jay Shrauner's avatar Jay Shrauner Committed by Android Git Automerger
Browse files

am b9b34d34: am 61c54934: am 6b1b24a0: am 0d2a1274: am a9d3960f: Merge "Fix...

am b9b34d34: am 61c54934: am 6b1b24a0: am 0d2a1274: am a9d3960f: Merge "Fix synchronization in onNotNullableQueryComplete" into klp-dev

* commit 'b9b34d34':
  Fix synchronization in onNotNullableQueryComplete
parents 0441b5af b9b34d34
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -258,7 +258,7 @@ public class CallLogQueryHandler extends NoNullCursorAsyncQueryHandler {
    }

    @Override
    protected void onNotNullableQueryComplete(int token, Object cookie, Cursor cursor) {
    protected synchronized void onNotNullableQueryComplete(int token, Object cookie, Cursor cursor) {
        if (token == QUERY_CALLLOG_TOKEN) {
            int requestId = ((Integer) cookie).intValue();
            if (requestId != mCallsRequestId) {