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

Commit 0a87e6a3 authored by Frederick Mayle's avatar Frederick Mayle Committed by Automerger Merge Worker
Browse files

Merge "binderRpcTest: hermiticity - salt UDS name w/ PID" am: 455ad23b am:...

Merge "binderRpcTest: hermiticity - salt UDS name w/ PID" am: 455ad23b am: 0c039916 am: 92e6c9b2 am: a69671c6

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2475204



Change-Id: I0ea029a02a9258e222fbafae8af4525cde35faff
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 5704678f a69671c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ private:
static std::string allocateSocketAddress() {
    static size_t id = 0;
    std::string temp = getenv("TMPDIR") ?: "/tmp";
    auto ret = temp + "/binderRpcTest_" + std::to_string(id++);
    auto ret = temp + "/binderRpcTest_" + std::to_string(getpid()) + "_" + std::to_string(id++);
    unlink(ret.c_str());
    return ret;
};