Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751558AbZG3Oxm (ORCPT ); Thu, 30 Jul 2009 10:53:42 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751406AbZG3Oxl (ORCPT ); Thu, 30 Jul 2009 10:53:41 -0400 Received: from g4t0016.houston.hp.com ([15.201.24.19]:41751 "EHLO g4t0016.houston.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751403AbZG3Oxj (ORCPT ); Thu, 30 Jul 2009 10:53:39 -0400 From: Paul Moore Organization: Hewlett-Packard To: Julia Lawall Subject: Re: [PATCH 4/5] net/netlabel: Add kmalloc NULL tests Date: Thu, 30 Jul 2009 10:53:37 -0400 User-Agent: KMail/1.11.4 (Linux/2.6.30-gentoo-r1; KDE/4.2.4; i686; ; ) Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org References: <200907301032.20318.paul.moore@hp.com> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200907301053.37416.paul.moore@hp.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1538 Lines: 63 On Thursday 30 July 2009 10:38:19 am Julia Lawall wrote: > From: Julia Lawall > > The test on map4 should be a test on map6. > > The semantic match that finds this problem is as follows: > (http://www.emn.fr/x-info/coccinelle/) > > // > @@ > expression *x; > identifier f; > constant char *C; > @@ > > x = \(kmalloc\|kcalloc\|kzalloc\)(...); > ... when != x == NULL > when != x != NULL > when != (x || ...) > ( > kfree(x) > > f(...,C,...,x,...) > > *f(...,x,...) > > *x->f > ) > // > > Signed-off-by: Julia Lawall Much better, thank you. Acked-by: Paul Moore > --- > net/netlabel/netlabel_kapi.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/net/netlabel/netlabel_kapi.c b/net/netlabel/netlabel_kapi.c > index 3ff6f32..6ce0020 100644 > --- a/net/netlabel/netlabel_kapi.c > +++ b/net/netlabel/netlabel_kapi.c > @@ -151,7 +151,7 @@ int netlbl_cfg_unlbl_map_add(const char *domain, > addr6 = addr; > mask6 = mask; > map6 = kzalloc(sizeof(*map6), GFP_ATOMIC); > - if (map4 == NULL) > + if (map6 == NULL) > goto cfg_unlbl_map_add_failure; > map6->type = NETLBL_NLTYPE_UNLABELED; > ipv6_addr_copy(&map6->list.addr, addr6); -- paul moore linux @ hp -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/