From 9c4fa66706896906ccbca60555dbc87ddd00aac9 Mon Sep 17 00:00:00 2001 From: Jooyung Han Date: Fri, 5 Jul 2019 11:22:18 +0900 Subject: [PATCH] init: fix to avoid loading apex *.rc files twice Test: adb shell dmesg | grep "init: Parsing file /apex" shows a single entry for each APEX'es *rc file Change-Id: I9006cc3d0cb7bdfe7532279f29d8095b7d16a807 --- init/builtins.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/builtins.cpp b/init/builtins.cpp index cc84aa086..55b024891 100644 --- a/init/builtins.cpp +++ b/init/builtins.cpp @@ -1107,7 +1107,7 @@ static Result do_parse_apex_configs(const BuiltinArguments& args) { // /apex/ paths, so unless we filter them out, we will parse the // same file twice. std::vector paths = android::base::Split(path, "/"); - if (paths.size() >= 2 && paths[1].find('@') != std::string::npos) { + if (paths.size() >= 3 && paths[2].find('@') != std::string::npos) { continue; } configs.push_back(path);