Merge "Check the return value of listFiles on the ifw directory"

This commit is contained in:
Ben Gruver
2014-02-14 21:15:49 +00:00
committed by Gerrit Code Review

View File

@ -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);
}
} }
} }