Bug 733965 - Cursor not closed in ClientsDatabaseAccessor. r=rnewman

This commit is contained in:
Marina Samuel 2012-03-07 18:01:33 -08:00
Родитель b3b7069cab
Коммит 0240e10923
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -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() {