summaryrefslogtreecommitdiff
path: root/init/mount_handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'init/mount_handler.cpp')
-rw-r--r--init/mount_handler.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/init/mount_handler.cpp b/init/mount_handler.cpp
index 46f833104..01abba8d1 100644
--- a/init/mount_handler.cpp
+++ b/init/mount_handler.cpp
@@ -130,11 +130,7 @@ void MountHandler::MountHandlerFunction() {
char* buf = nullptr;
size_t len = 0;
while (getline(&buf, &len, fp_.get()) != -1) {
- auto buf_string = std::string(buf);
- if (buf_string.find("/emulated") != std::string::npos) {
- continue;
- }
- auto entry = ParseMount(buf_string);
+ auto entry = ParseMount(std::string(buf));
auto match = untouched.find(entry);
if (match == untouched.end()) {
touched.emplace_back(std::move(entry));