Add workaround for bulkBarrierPreWrite: unaligned arguments panic

This commit is contained in:
世界 2024-12-10 13:10:12 +08:00
parent 72e3014ee6
commit 1c494b56a3
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 12 additions and 3 deletions

View file

@ -77,7 +77,7 @@ class VPNService : VpnService(), PlatformInterfaceWrapper {
}
if (options.autoRoute) {
builder.addDnsServer(options.dnsServerAddress)
builder.addDnsServer(options.dnsServerAddress.value)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
val inet4RouteAddress = options.inet4RouteAddress

View file

@ -4,9 +4,16 @@ import android.net.IpPrefix
import android.os.Build
import androidx.annotation.RequiresApi
import io.nekohasekai.libbox.RoutePrefix
import io.nekohasekai.libbox.StringBox
import io.nekohasekai.libbox.StringIterator
import java.net.InetAddress
val StringBox?.unwrap: String
get() {
if (this == null) return ""
return value
}
fun Iterable<String>.toStringIterator(): StringIterator {
return object : StringIterator {
val iterator = iterator()

View file

@ -14,6 +14,7 @@ import io.nekohasekai.sfa.database.Profile
import io.nekohasekai.sfa.database.ProfileManager
import io.nekohasekai.sfa.databinding.ActivityEditProfileContentBinding
import io.nekohasekai.sfa.ktx.errorDialogBuilder
import io.nekohasekai.sfa.ktx.unwrap
import io.nekohasekai.sfa.ui.shared.AbstractActivity
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.delay
@ -84,7 +85,7 @@ class EditProfileContentActivity : AbstractActivity<ActivityEditProfileContentBi
R.id.action_format -> {
lifecycleScope.launch(Dispatchers.IO) {
runCatching {
val content = Libbox.formatConfig(binding.editor.text.toString())
val content = Libbox.formatConfig(binding.editor.text.toString()).unwrap
if (binding.editor.text.toString() != content) {
withContext(Dispatchers.Main) {
binding.editor.setTextContent(content)

View file

@ -2,6 +2,7 @@ package io.nekohasekai.sfa.utils
import io.nekohasekai.libbox.Libbox
import io.nekohasekai.sfa.BuildConfig
import io.nekohasekai.sfa.ktx.unwrap
import java.io.Closeable
class HTTPClient : Closeable {
@ -30,7 +31,7 @@ class HTTPClient : Closeable {
request.setUserAgent(userAgent)
request.setURL(url)
val response = request.execute()
return response.contentString
return response.content.unwrap
}
override fun close() {