From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Szymon Janc To: linux-bluetooth@vger.kernel.org Subject: Re: [PATCH 1/3] shared/hfp: Fix calling callback without result_pending set Date: Mon, 09 Feb 2015 13:29:52 +0100 Message-ID: <1829256.I1cL0rmahj@leonov> In-Reply-To: <1423148831-25507-1-git-send-email-szymon.janc@tieto.com> References: <1423148831-25507-1-git-send-email-szymon.janc@tieto.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: linux-bluetooth-owner@vger.kernel.org List-ID: On Thursday 05 of February 2015 16:07:09 Szymon Janc wrote: > Always set pending_result before calling command callback. > > If response will be send from callback pending_result will be > cleared by either hfp_gw_send_result or hfp_gw_send_error. > --- > src/shared/hfp.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/src/shared/hfp.c b/src/shared/hfp.c > index 0ce3121..ea6494d 100644 > --- a/src/shared/hfp.c > +++ b/src/shared/hfp.c > @@ -183,8 +183,8 @@ static void handle_unknown_at_command(struct hfp_gw > *hfp, const char *data) > { > if (hfp->command_callback) { > - hfp->command_callback(data, hfp->command_data); > hfp->result_pending = true; > + hfp->command_callback(data, hfp->command_data); > } else { > hfp_gw_send_result(hfp, HFP_RESULT_ERROR); > } > @@ -263,6 +263,7 @@ done: > return true; > } > > + hfp->result_pending = true; > handler->callback(&context, type, handler->user_data); > > return true; All patches applied. -- BR Szymon Janc