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

Commit 7d905e37 authored by Yifan Hong's avatar Yifan Hong Committed by android-build-merger
Browse files

Merge "lshal: strip ending \0 from cmdline"

am: 469e9925

Change-Id: I206969d4ae0b7b3720d1b918c3adbff1b2bcd79d
parents 5549004e 469e9925
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) {