From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23925 invoked by alias); 17 Jun 2004 11:58:01 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23890 invoked from network); 17 Jun 2004 11:57:59 -0000 Received: from unknown (HELO dublin.act-europe.fr) (212.157.227.154) by sourceware.org with SMTP; 17 Jun 2004 11:57:59 -0000 Received: from localhost (province.act-europe.fr [10.10.0.214]) by filtered-dublin.act-europe.fr (Postfix) with ESMTP id AE908229FE7; Thu, 17 Jun 2004 13:57:58 +0200 (MET DST) Received: from dublin.act-europe.fr ([10.10.0.154]) by localhost (province.act-europe.fr [10.10.0.214]) (amavisd-new, port 10024) with ESMTP id 62240-05; Thu, 17 Jun 2004 13:57:58 +0200 (CEST) Received: from berne.act-europe.fr (berne.act-europe.fr [10.10.0.165]) by dublin.act-europe.fr (Postfix) with ESMTP id 6F7EA229F14; Thu, 17 Jun 2004 13:57:58 +0200 (MET DST) Received: by berne.act-europe.fr (Postfix, from userid 560) id 4393C592B; Thu, 17 Jun 2004 08:57:58 -0400 (EDT) Date: Thu, 17 Jun 2004 11:58:00 -0000 From: Jerome Guitton To: binutils@sources.redhat.com, gdb-patches@sources.redhat.com Subject: Re: [RFA] bfd_cache_close_all Message-ID: <20040617125758.GA10271@act-europe.fr> References: <20040616171748.GA8782@act-europe.fr> <20040617022241.GF3596@bubble.modra.org> <20040617125107.GD8722@act-europe.fr> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="UHN/qo2QbUvPLonB" Content-Disposition: inline In-Reply-To: <20040617125107.GD8722@act-europe.fr> User-Agent: Mutt/1.4i X-Virus-Scanned: by amavisd-new at act-europe.fr X-SW-Source: 2004-06/txt/msg00408.txt.bz2 --UHN/qo2QbUvPLonB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 245 Oh wait, there is no return statement... I've checked in the following, as obvious. Do I need to add a changelog entry? 2004-06-17 Jerome Guitton * cache.c (bfd_cache_close_all): Add missing return statement. -- Jerome --UHN/qo2QbUvPLonB Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ob.dif" Content-length: 405 Index: cache.c =================================================================== RCS file: /cvs/src/src/bfd/cache.c,v retrieving revision 1.15 diff -u -p -r1.15 cache.c --- cache.c 17 Jun 2004 11:47:18 -0000 1.15 +++ cache.c 17 Jun 2004 11:53:58 -0000 @@ -366,6 +366,8 @@ bfd_cache_close_all () while (bfd_last_cache != NULL) ret &= bfd_cache_close (bfd_last_cache); + + return ret; } /* --UHN/qo2QbUvPLonB--