Fm: add null check for Receiver before issuing command
this case happens where call is active and fm is stopped,
soon after this if onAudioFocusChange dispatch to fm, then
while handling focus change we should issue command only
if Receiver is available.
CRs-Fixed: 2479379
Change-Id: I6e45f03a5a2ee1ee9382a8c1da01c81baec7eb0f
diff --git a/fmapp2/src/com/caf/fmradio/FMRadioService.java b/fmapp2/src/com/caf/fmradio/FMRadioService.java
index 4cb92d3..f44eb42 100644
--- a/fmapp2/src/com/caf/fmradio/FMRadioService.java
+++ b/fmapp2/src/com/caf/fmradio/FMRadioService.java
@@ -1612,7 +1612,8 @@
//intentional fall through.
case AudioManager.AUDIOFOCUS_LOSS_TRANSIENT:
Log.v(LOGTAG, "AudioFocus: received AUDIOFOCUS_LOSS_TRANSIENT");
- if (mReceiver.isCherokeeChip() && (mPref.getBoolean("SLIMBUS_SEQ", true))) {
+ if (mReceiver != null && mReceiver.isCherokeeChip() &&
+ (mPref.getBoolean("SLIMBUS_SEQ", true))) {
enableSlimbus(DISABLE_SLIMBUS_DATA_PORT);
}
if (true == mPlaybackInProgress) {
@@ -1636,7 +1637,7 @@
if(false == mPlaybackInProgress) {
startFM();
- if (mReceiver.isCherokeeChip() &&
+ if (mReceiver != null && mReceiver.isCherokeeChip() &&
(mPref.getBoolean("SLIMBUS_SEQ", true))) {
enableSlimbus(ENABLE_SLIMBUS_DATA_PORT);
}