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

Commit ce55f80e authored by Chris Wailes's avatar Chris Wailes
Browse files

Fixed an issue Zygote initialization.

An assignment to a flag and a call to a function that uses that flag
were in the wrong order.

Bug: 146614089
Test: Treehugger
Change-Id: If046aa62084892b8dae10497f15cf4c685d226db
Merged-In: If046aa62084892b8dae10497f15cf4c685d226db
parent d8ef1169
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -184,9 +184,8 @@ class ZygoteServer {
                            Zygote.USAP_POOL_SECONDARY_SOCKET_NAME);
        }

        fetchUsapPoolPolicyProps();

        mUsapPoolSupported = true;
        fetchUsapPoolPolicyProps();
    }

    void setForkChild() {