Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756193AbZJSNwq (ORCPT ); Mon, 19 Oct 2009 09:52:46 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756113AbZJSNwp (ORCPT ); Mon, 19 Oct 2009 09:52:45 -0400 Received: from cantor2.suse.de ([195.135.220.15]:41847 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755372AbZJSNwo (ORCPT ); Mon, 19 Oct 2009 09:52:44 -0400 Date: Mon, 19 Oct 2009 15:52:47 +0200 (CEST) From: Jiri Kosina X-X-Sender: jkosina@wotan.suse.de To: Felipe Contreras Cc: linux-kernel@vger.kernel.org, Herbert Xu , "David S. Miller" , Jarod Wilson , Geert Uytterhoeven , Neil Horman , linux-crypto@vger.kernel.org Subject: Re: [PATCH 3/7] crypto: testmgr: fix warning In-Reply-To: <1255906474-25091-4-git-send-email-felipe.contreras@gmail.com> Message-ID: References: <1255906474-25091-1-git-send-email-felipe.contreras@gmail.com> <1255906474-25091-4-git-send-email-felipe.contreras@gmail.com> User-Agent: Alpine 2.00 (LSU 1167 2008-08-23) 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 Content-Length: 1237 Lines: 35 On Mon, 19 Oct 2009, Felipe Contreras wrote: > crypto/testmgr.c: In function ?test_cprng?: > crypto/testmgr.c:1204: warning: ?err? may be used uninitialized in this function > > Signed-off-by: Felipe Contreras > --- > crypto/testmgr.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/crypto/testmgr.c b/crypto/testmgr.c > index 6d5b746..1f2357b 100644 > --- a/crypto/testmgr.c > +++ b/crypto/testmgr.c > @@ -1201,7 +1201,7 @@ static int test_cprng(struct crypto_rng *tfm, struct cprng_testvec *template, > unsigned int tcount) > { > const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm)); > - int err, i, j, seedsize; > + int err = 0, i, j, seedsize; > u8 *seed; > char result[32]; As it is not obvious to me immediately why/whether tcount couldn't be zero (which would cause uninitialized use of 'err'), I am not merging this through trivial tree. Herbert? -- Jiri Kosina SUSE Labs, Novell Inc. -- 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/