Diff between 5d9207acc1bf184a697da830c9f4bfefcefa52fd and 4861017b1ba296b16145b613129d50192ba0331e
Changed Files
| File | Additions | Deletions | Status |
| audio/telephony-maemo6.c | +4 | -1 | modified |
Full Patch
diff --git a/audio/telephony-maemo6.c b/audio/telephony-maemo6.c
index 2f8468e..051f82b 100644
--- a/audio/telephony-maemo6.c
+++ b/audio/telephony-maemo6.c
@@ -900,7 +900,10 @@ void telephony_transmit_dtmf_req(void *telephony_device, char tone)
start_dtmf(telephony_device, tone);
- start_feedback_tone(tone);
+ if (!find_call_with_status(CSD_CALL_STATUS_ACTIVE))
+ error("No active call");
+ else
+ start_feedback_tone(tone);
}
void telephony_subscriber_number_req(void *telephony_device)