commit | ce55f80e17909d5630b81eed919bf472039fec00 | [log] [tgz] |
---|---|---|
author | Chris Wailes <chriswailes@google.com> | Thu Dec 19 14:19:06 2019 -0800 |
committer | Chris Wailes <chriswailes@google.com> | Wed Jan 15 16:20:45 2020 -0800 |
tree | d36f012d9810f0c410b50d5bf2fc6f9e501c2d60 | |
parent | d8ef11699304a2fdffbbe1be77f885042a840e00 [diff] |
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
diff --git a/core/java/com/android/internal/os/ZygoteServer.java b/core/java/com/android/internal/os/ZygoteServer.java index 4a21d37..8d281b7 100644 --- a/core/java/com/android/internal/os/ZygoteServer.java +++ b/core/java/com/android/internal/os/ZygoteServer.java
@@ -184,9 +184,8 @@ Zygote.USAP_POOL_SECONDARY_SOCKET_NAME); } - fetchUsapPoolPolicyProps(); - mUsapPoolSupported = true; + fetchUsapPoolPolicyProps(); } void setForkChild() {