From 26594b9fc135c57e029deb9471e5226dd1d01abd Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Fri, 14 Mar 2025 16:26:08 +0100 Subject: [PATCH] hfp: reset context send_error --- src/classic/hfp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/classic/hfp.c b/src/classic/hfp.c index c95b15c4e..900ff6753 100644 --- a/src/classic/hfp.c +++ b/src/classic/hfp.c @@ -606,7 +606,6 @@ static void hfp_reset_voice_recognition(hfp_connection_t * hfp_connection){ void hfp_reset_context_flags(hfp_connection_t * hfp_connection){ if (!hfp_connection) return; hfp_connection->ok_pending = 0; - hfp_connection->send_error = 0; hfp_connection->command = HFP_CMD_NONE; hfp_connection->change_status_update_for_individual_ag_indicators = 0; @@ -646,6 +645,9 @@ static hfp_connection_t * create_hfp_connection_context(void){ hfp_connection->hf_callsetup_status = HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS; hfp_connection->hf_callheld_status = HFP_CALLHELD_STATUS_NO_CALLS_HELD; + // AG only + hfp_connection->send_error = 0; + hfp_connection->operator_name_changed = 0; hfp_reset_context_flags(hfp_connection);