зеркало из https://github.com/mozilla/gecko-dev.git
Bug 733965 - Cursor not closed in ClientsDatabaseAccessor. r=rnewman
This commit is contained in:
Родитель
b3b7069cab
Коммит
0240e10923
|
@ -88,11 +88,17 @@ public class ClientsDatabaseAccessor {
|
|||
}
|
||||
|
||||
public int clientsCount() {
|
||||
Cursor cur;
|
||||
try {
|
||||
return db.fetchAll().getCount();
|
||||
cur = db.fetchAll();
|
||||
} catch (NullCursorException e) {
|
||||
return 0;
|
||||
}
|
||||
try {
|
||||
return cur.getCount();
|
||||
} finally {
|
||||
cur.close();
|
||||
}
|
||||
}
|
||||
|
||||
private String getProfileId() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче