Force closed at settings application when delete Misc files
NullPointerException in MiscFilesHandler.java, missing check to ensure that dir.list() does not return null. Change-Id: I13aac19949826b385610fd1fee2befb411684023
This commit is contained in:
committed by
Henrik Baard
parent
f141594c05
commit
aee4b75aba
@@ -144,8 +144,8 @@ public class MiscFilesHandler extends ListActivity {
|
||||
// Returns true if all deletions were successful.
|
||||
// If a deletion fails, the method stops attempting to delete and returns false.
|
||||
private boolean deleteDir(File dir) {
|
||||
if (dir.isDirectory()) {
|
||||
String[] children = dir.list();
|
||||
String[] children = dir.list();
|
||||
if (children != null) {
|
||||
for (int i=0; i < children.length; i++) {
|
||||
boolean success = deleteDir(new File(dir, children[i]));
|
||||
if (!success) {
|
||||
|
Reference in New Issue
Block a user