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

Commit 523ae8e3 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.

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


        fetchUsapPoolPolicyProps();

        mUsapPoolSupported = true;
        mUsapPoolSupported = true;
        fetchUsapPoolPolicyProps();
    }
    }


    void setForkChild() {
    void setForkChild() {