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

Commit cb55f3b5 authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk Committed by Automerger Merge Worker
Browse files

Merge "Fix init list order." into main am: b11daedf am: ac429b50 am:...

Merge "Fix init list order." into main am: b11daedf am: ac429b50 am: 9ed13f95 am: 21b183e9 am: f5050e96

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



Change-Id: I33cdf5f1e5132400849a0f34a4b9a66b8192a9ce
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 97d1c6c2 f5050e96
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -674,7 +674,7 @@ TEST_P(BinderRpc, SessionWithIncomingThreadpoolDoesntLeak) {
    // session 0 - will check for leaks in destrutor of proc
    // session 1 - we want to make sure it gets deleted when we drop all references to it
    auto proc = createRpcTestSocketServerProcess(
            {.numThreads = 1, .numIncomingConnectionsBySession = {0, 1}, .numSessions = 2});
            {.numThreads = 1, .numSessions = 2, .numIncomingConnectionsBySession = {0, 1}});

    wp<RpcSession> session = proc.proc->sessions.at(1).session;