1
0
mirror of https://github.com/nvllsvm/Audinaut synced 2025-02-17 20:10:53 +01:00
This commit is contained in:
Andrew Rabert 2017-03-05 11:40:26 -05:00
parent 9fd800acb8
commit a1f5a60b8f
2 changed files with 5 additions and 0 deletions

View File

@ -186,6 +186,7 @@ public class SongDBHandler extends SQLiteOpenHelper {
return null; return null;
} }
finally { finally {
cursor.close();
db.close(); db.close();
} }
} }
@ -230,6 +231,7 @@ public class SongDBHandler extends SQLiteOpenHelper {
return null; return null;
} }
finally { finally {
cursor.close();
db.close(); db.close();
} }
} }
@ -246,6 +248,7 @@ public class SongDBHandler extends SQLiteOpenHelper {
return null; return null;
} }
finally { finally {
cursor.close();
db.close(); db.close();
} }
} }

View File

@ -71,6 +71,8 @@ public class SeekBarPreference extends DialogPreference implements SeekBar.OnSee
if(mDisplay == null) { if(mDisplay == null) {
mDisplay = "%.0f"; mDisplay = "%.0f";
} }
a.recycle();
} }
@Override @Override