Merge "Check the return value of listFiles on the ifw directory"
This commit is contained in:
@ -268,11 +268,13 @@ public class IntentFirewall {
|
|||||||
}
|
}
|
||||||
|
|
||||||
File[] files = rulesDir.listFiles();
|
File[] files = rulesDir.listFiles();
|
||||||
for (int i=0; i<files.length; i++) {
|
if (files != null) {
|
||||||
File file = files[i];
|
for (int i=0; i<files.length; i++) {
|
||||||
|
File file = files[i];
|
||||||
|
|
||||||
if (file.getName().endsWith(".xml")) {
|
if (file.getName().endsWith(".xml")) {
|
||||||
readRules(file, resolvers);
|
readRules(file, resolvers);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user