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

Commit 0bab7c3d authored by Dan Austin's avatar Dan Austin Committed by android-build-merger
Browse files

Merge "Address const issue in preparation for libcxx rebase." am: a2a13e32

am: 61e5a662

* commit '61e5a662':
  Address const issue in preparation for libcxx rebase.

Change-Id: I883b8210df7c8ddd1f82914ba448af0175f53437
parents 4eb63f3f 61e5a662
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -246,7 +246,7 @@ bool Subprocess::ForkAndExec(std::string* error) {
        char** current = environ;
        while (char* env_cstr = *current++) {
            std::string env_string = env_cstr;
            char* delimiter = strchr(env_string.c_str(), '=');
            char* delimiter = strchr(&env_string[0], '=');

            // Drop any values that don't contain '='.
            if (delimiter) {