Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753592Ab2K1I6g (ORCPT ); Wed, 28 Nov 2012 03:58:36 -0500 Received: from mx3.cyfra.ua ([62.80.160.182]:48086 "EHLO mx3.cyfra.ua" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752720Ab2K1I6g (ORCPT ); Wed, 28 Nov 2012 03:58:36 -0500 From: Vitalii Demianets Organization: Factor-SPE To: "Hans J. Koch" Subject: Re: [PATCH] uio.c: Fix warning: 'ret' might be used uninitialized Date: Wed, 28 Nov 2012 10:58:32 +0200 User-Agent: KMail/1.9.10 Cc: linux-kernel@vger.kernel.org, "Greg Kroah-Hartman" References: <201211271348.14603.vitas@nppfactor.kiev.ua> <20121127224341.GA2605@local> In-Reply-To: <20121127224341.GA2605@local> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201211281058.33185.vitas@nppfactor.kiev.ua> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1392 Lines: 47 On Wednesday 28 November 2012 00:43:41 Hans J. Koch wrote: > > Thanks, good catch, but why don't you simply do this: > Just a matter of personal preference. As a maintainer you can apply either patch you want. I guess you would prefer your approach and I have no objections to that :) > > >From 228445996bb75a44d16b6237eca6a0916d9b2d7e Mon Sep 17 00:00:00 2001 > From: "Hans J. Koch" > Date: Tue, 27 Nov 2012 23:38:00 +0100 > Subject: [PATCH] uio: Fix warning: 'ret' might be used uninitialized > > In two cases, the return value variable "ret" can be undefined. > > Signed-off-by: Hans J. Koch > --- > drivers/uio/uio.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/uio/uio.c b/drivers/uio/uio.c > index 5110f36..fc60e35 100644 > --- a/drivers/uio/uio.c > +++ b/drivers/uio/uio.c > @@ -263,7 +263,7 @@ static struct class uio_class = { > */ > static int uio_dev_add_attributes(struct uio_device *idev) > { > - int ret; > + int ret = -ENOMEM; > int mi, pi; > int map_found = 0; > int portio_found = 0; -- With Best Regards, Vitalii Demianets -- 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/