From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35372) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T9JCb-0004bk-4M for qemu-devel@nongnu.org; Wed, 05 Sep 2012 13:15:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T9JCZ-0003So-OC for qemu-devel@nongnu.org; Wed, 05 Sep 2012 13:15:45 -0400 Message-ID: <504788BB.7030609@weilnetz.de> Date: Wed, 05 Sep 2012 19:15:39 +0200 From: Stefan Weil MIME-Version: 1.0 References: <1346703803-22003-1-git-send-email-sw@weilnetz.de> <504774FF.6000501@suse.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] sparc-dis: Remove redundant NULL check List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: qemu-trivial@nongnu.org, =?ISO-8859-1?Q?Andreas_F=E4rber?= , qemu-devel@nongnu.org Am 05.09.2012 18:55, schrieb Stefan Hajnoczi: > On Wed, Sep 5, 2012 at 4:51 PM, Andreas F=E4rber wro= te: >> Am 03.09.2012 22:23, schrieb Stefan Weil: >>> Report from smatch: >>> sparc-dis.c:2664 build_hash_table(14) info: >>> redundant null check on hash_buf calling free() >>> >>> Signed-off-by: Stefan Weil >>> --- >>> >>> Coding style was not fixed. >>> >>> - sw >>> >>> sparc-dis.c | 3 +-- >>> 1 file changed, 1 insertion(+), 2 deletions(-) >>> >>> diff --git a/sparc-dis.c b/sparc-dis.c >>> index cdd337a..ef28835 100644 >>> --- a/sparc-dis.c >>> +++ b/sparc-dis.c >>> @@ -2660,8 +2660,7 @@ build_hash_table (const sparc_opcode **opcode_t= able, >>> >>> memset (hash_table, 0, HASH_SIZE * sizeof (hash_table[0])); >>> memset (hash_count, 0, HASH_SIZE * sizeof (hash_count[0])); >>> - if (hash_buf !=3D NULL) >>> - free (hash_buf); >>> + free (hash_buf); >>> hash_buf =3D malloc (sizeof (* hash_buf) * num_opcodes); >>> for (i =3D num_opcodes - 1; i>=3D 0; --i) >>> { >> >> *-dis sounds like binutils - did upstream drop the if, too? >> If not, then diverging for a non-issue does not seem necessary. > > Ah, good point. I don't think we should apply this patch :P. > > Dropping the patch from qemu-trivial until this discussion finishes. > > Stefan AFAIK, binutils moved to GPL 3. Therefore I don't expect that QEMU will update to upstream in the next years. We'll have to maintain the code which we have. Try "git log *-dis.c" or "gitk *-dis.c": there are already lots of more trivial changes which got applied to the disassembler files. =3D> The patch should be applied. Regards, Stefan