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

Commit e03ff19d authored by Jeffrey Brown's avatar Jeffrey Brown Committed by Android Git Automerger
Browse files

am e646f943: am ca7b1210: am ea56499d: Merge "Potential NPE in SQLiteConnection"

# By Sylvain Becuwe
# Via Android Git Automerger (2) and others
* commit 'e646f943':
  Potential NPE in SQLiteConnection
parents faffb8b2 e646f943
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -974,7 +974,7 @@ public final class SQLiteConnection implements CancellationSignal.OnCancelListen
        if (count != statement.mNumParameters) {
            throw new SQLiteBindOrColumnIndexOutOfRangeException(
                    "Expected " + statement.mNumParameters + " bind arguments but "
                    + bindArgs.length + " were provided.");
                    + count + " were provided.");
        }
        if (count == 0) {
            return;