mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Alisher Alikhodjaev <alisher@google.com>
|
||
|
Date: Tue, 31 Oct 2023 11:13:03 -0700
|
||
|
Subject: [PATCH] Possible deadlock on the NfcService object
|
||
|
|
||
|
Bug: 268038643
|
||
|
Bug: 307489565
|
||
|
Test: CtsVerifier
|
||
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:2d8ea70c65831313d73784fb3c78f64ff0cbd627)
|
||
|
Merged-In: I683ae425dafa4e209b9517b62ada7d8a694f84a9
|
||
|
Change-Id: I683ae425dafa4e209b9517b62ada7d8a694f84a9
|
||
|
---
|
||
|
src/com/android/nfc/NfcService.java | 4 +---
|
||
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
||
|
|
||
|
diff --git a/src/com/android/nfc/NfcService.java b/src/com/android/nfc/NfcService.java
|
||
|
index 0e02cd03..00a0147d 100644
|
||
|
--- a/src/com/android/nfc/NfcService.java
|
||
|
+++ b/src/com/android/nfc/NfcService.java
|
||
|
@@ -852,9 +852,7 @@ public class NfcService implements DeviceHostListener {
|
||
|
}
|
||
|
|
||
|
public boolean isSecureNfcEnabled() {
|
||
|
- synchronized (NfcService.this) {
|
||
|
- return mIsSecureNfcEnabled;
|
||
|
- }
|
||
|
+ return mIsSecureNfcEnabled;
|
||
|
}
|
||
|
|
||
|
final class NfcAdapterService extends INfcAdapter.Stub {
|