From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752851AbbDEMNR (ORCPT ); Sun, 5 Apr 2015 08:13:17 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:29236 "EHLO mail3-relais-sop.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751389AbbDEMNN (ORCPT ); Sun, 5 Apr 2015 08:13:13 -0400 X-IronPort-AV: E=Sophos;i="5.11,527,1422918000"; d="scan'208";a="108405154" Date: Sun, 5 Apr 2015 14:13:10 +0200 (CEST) From: Julia Lawall X-X-Sender: jll@localhost6.localdomain6 To: Julia Lawall cc: Jaroslav Kysela , kernel-janitors@vger.kernel.org, Takashi Iwai , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 6/9] sound/pci/ctxfi/ctatc.c: fix error return code In-Reply-To: <1428233914-4503-6-git-send-email-Julia.Lawall@lip6.fr> Message-ID: References: <1428233914-4503-1-git-send-email-Julia.Lawall@lip6.fr> <1428233914-4503-6-git-send-email-Julia.Lawall@lip6.fr> User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Please ignore. Wrong patch set. On Sun, 5 Apr 2015, Julia Lawall wrote: > From: Julia Lawall > > Initialize err before returning on failure, as done elsewhere in the > function. > > A simplified version of the semantic match that finds this problem is as > follows: (http://coccinelle.lip6.fr/) > > // > ( > if@p1 (\(ret < 0\|ret != 0\)) > { ... return ret; } > | > ret@p1 = 0 > ) > ... when != ret = e1 > when != &ret > *if(...) > { > ... when != ret = e2 > when forall > return ret; > } > > // > > Signed-off-by: Julia Lawall > > --- > sound/pci/ctxfi/ctatc.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/sound/pci/ctxfi/ctatc.c b/sound/pci/ctxfi/ctatc.c > index 58b235c..a2f997a 100644 > --- a/sound/pci/ctxfi/ctatc.c > +++ b/sound/pci/ctxfi/ctatc.c > @@ -1725,8 +1725,10 @@ int __devinit ct_atc_create(struct snd_card *card, struct pci_dev *pci, > atc_connect_resources(atc); > > atc->timer = ct_timer_new(atc); > - if (!atc->timer) > + if (!atc->timer) { > + err = -ENOMEM; > goto error1; > + } > > err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, atc, &ops); > if (err < 0) > > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >