Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a3ca94b authored by Yifan Hong's avatar Yifan Hong Committed by android-build-merger
Browse files

Merge "lshal: strip ending \0 from cmdline" am: 469e9925

am: 7d905e37

Change-Id: I193384c9dc22b4585dfd4f7f08278138eb5578cc
parents f5e248b1 7d905e37
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ std::string getCmdline(pid_t pid) {
                                         false /* follow symlinks */)) {
        return "";
    }
    return content;
    return std::string{content.c_str()};
}

Partition parsePartition(const std::string& s) {