Return-Path: Date: Fri, 2 Dec 2011 13:18:27 +0200 From: Johan Hedberg To: Syam Sidhardhan Cc: linux-bluetooth@vger.kernel.org Subject: Re: [PATCH 2/3] Remove unwanted GError* assignment to NULL Message-ID: <20111202111827.GB15891@x220.ger.corp.intel.com> References: <1322144076-1913-1-git-send-email-s.syam@samsung.com> <1322144076-1913-2-git-send-email-s.syam@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <1322144076-1913-2-git-send-email-s.syam@samsung.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Hi Syam, On Thu, Nov 24, 2011, Syam Sidhardhan wrote: > --- > health/hdp.c | 1 - > 1 files changed, 0 insertions(+), 1 deletions(-) > > diff --git a/health/hdp.c b/health/hdp.c > index d167ab0..403d4c8 100644 > --- a/health/hdp.c > +++ b/health/hdp.c > @@ -551,7 +551,6 @@ static void hdp_get_dcpsm_cb(uint16_t dcpsm, gpointer user_data, GError *err) > hdp_tmp_dc_data_unref(hdp_conn); > hdp_conn->cb(hdp_chann->mdl, err, hdp_conn); > g_error_free(gerr); > - gerr = NULL; > } Applied, however a bigger question is whether gerr is even needed in this function at all since it's never used after potentially being set. Johan