public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: msnyder@sonic.net
To: binutils@sourceware.org
Subject: [PATCH] linker.c, null string
Date: Tue, 24 Jul 2007 22:19:00 -0000	[thread overview]
Message-ID: <12546.12.7.175.2.1185310570.squirrel@webmail.sonic.net> (raw)

[-- Attachment #1: Type: text/plain, Size: 134 bytes --]

Shouldn't use NULL to denote an invalid string, because the pointer
will be passed to functions that will dereference it (Coverity).


[-- Attachment #2: string.txt --]
[-- Type: text/plain, Size: 830 bytes --]

2007-07-24  Michael Snyder  <msnyder@access-company.com>

	* linker.c (generic_link_add_symbol_list): Use an invalid string
	rather than null, since the pointer will be dereferenced.

Index: linker.c
===================================================================
RCS file: /cvs/src/src/bfd/linker.c,v
retrieving revision 1.59
diff -p -r1.59 linker.c
*** linker.c	3 Jul 2007 14:26:42 -0000	1.59
--- linker.c	24 Jul 2007 20:53:38 -0000
*************** generic_link_add_symbol_list (bfd *abfd,
*** 1334,1340 ****
  	      name = bfd_asymbol_name (*pp);
  	    }
  	  else
! 	    string = NULL;
  
  	  bh = NULL;
  	  if (! (_bfd_generic_link_add_one_symbol
--- 1334,1340 ----
  	      name = bfd_asymbol_name (*pp);
  	    }
  	  else
! 	    string = "*invalid*";
  
  	  bh = NULL;
  	  if (! (_bfd_generic_link_add_one_symbol

             reply	other threads:[~2007-07-24 20:56 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-24 22:19 msnyder [this message]
2007-07-25  0:11 ` Alan Modra
2007-07-25  0:49   ` msnyder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=12546.12.7.175.2.1185310570.squirrel@webmail.sonic.net \
    --to=msnyder@sonic.net \
    --cc=binutils@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).