am 09bb9f66: Merge "Ensure the intent firewall dir exists before starting the FileObserver" into jb-mr2-dev

* commit '09bb9f66a0c258d3393145d31529de92e55e039a':
  Ensure the intent firewall dir exists before starting the FileObserver
This commit is contained in:
Ben Gruver
2013-04-25 10:42:04 -07:00
committed by Android Git Automerger

View File

@@ -107,6 +107,7 @@ public class IntentFirewall {
public IntentFirewall(AMSInterface ams) { public IntentFirewall(AMSInterface ams) {
mAms = ams; mAms = ams;
File rulesFile = getRulesFile(); File rulesFile = getRulesFile();
rulesFile.getParentFile().mkdirs();
readRules(rulesFile); readRules(rulesFile);