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:
Ben Gruver
2014-02-14 13:57:24 -08:00
committed by Android Git Automerger

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