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

Commit 5da65608 authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk
Browse files

Fix init list order.

Bug: 145210666
Test: build with aosp/2644915
Test: binder_rpc_test
Change-Id: I169fe7526c58d2473f39340022e721d3ade4c209
parent 32b511f4
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;