Merge "Bluetooth: Check state correctly when client wants to bind" am: d77aaf6a6e
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1524638 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I30180ec8e75f6c619dbe8492e74324d2e38d6a3f
This commit is contained in:
@@ -1265,7 +1265,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
|
|||||||
@Override
|
@Override
|
||||||
public boolean bindBluetoothProfileService(int bluetoothProfile,
|
public boolean bindBluetoothProfileService(int bluetoothProfile,
|
||||||
IBluetoothProfileServiceConnection proxy) {
|
IBluetoothProfileServiceConnection proxy) {
|
||||||
if (!mEnable) {
|
if (mState != BluetoothAdapter.STATE_ON) {
|
||||||
if (DBG) {
|
if (DBG) {
|
||||||
Slog.d(TAG, "Trying to bind to profile: " + bluetoothProfile
|
Slog.d(TAG, "Trying to bind to profile: " + bluetoothProfile
|
||||||
+ ", while Bluetooth was disabled");
|
+ ", while Bluetooth was disabled");
|
||||||
@@ -1431,7 +1431,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
|
|||||||
mBluetoothLock.readLock().unlock();
|
mBluetoothLock.readLock().unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!mEnable || state != BluetoothAdapter.STATE_ON) {
|
if (state != BluetoothAdapter.STATE_ON) {
|
||||||
if (DBG) {
|
if (DBG) {
|
||||||
Slog.d(TAG, "Unable to bindService while Bluetooth is disabled");
|
Slog.d(TAG, "Unable to bindService while Bluetooth is disabled");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user