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

Commit 469e9925 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "lshal: strip ending \0 from cmdline"

parents 79babbde 1338ccce
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) {