am 509a243c: Merge "Check the return value of listFiles on the ifw directory"
* commit '509a243c2c5ebc9cc55324bd9a03a5b560d81cfb': 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();
|
||||
for (int i=0; i<files.length; i++) {
|
||||
File file = files[i];
|
||||
if (files != null) {
|
||||
for (int i=0; i<files.length; i++) {
|
||||
File file = files[i];
|
||||
|
||||
if (file.getName().endsWith(".xml")) {
|
||||
readRules(file, resolvers);
|
||||
if (file.getName().endsWith(".xml")) {
|
||||
readRules(file, resolvers);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user