Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [patch] stack.c, check return value of lookup_symbol
@ 2007-07-05 23:06 msnyder
  2007-07-06 15:21 ` Jim Blandy
  0 siblings, 1 reply; 4+ messages in thread
From: msnyder @ 2007-07-05 23:06 UTC (permalink / raw)
  To: gdb-patches

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

Since it's known that lookup_symbol can return NULL, my first impulse
was to call gdb_assert.  That still might be the right thing to do,
since it indicates some sort of internal fault -- but it seems to
me that it isn't necessarily fatal, and simply doing nothing is an option...


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

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

	* stack.c (print_frame_args): Check return value of lookup_symbol
	(Coverity).

Index: stack.c
===================================================================
RCS file: /cvs/src/src/gdb/stack.c,v
retrieving revision 1.149
diff -p -r1.149 stack.c
*** stack.c	18 Jun 2007 18:28:29 -0000	1.149
--- stack.c	5 Jul 2007 23:04:35 -0000
*************** print_frame_args (struct symbol *func, s
*** 247,253 ****
  	      struct symbol *nsym;
  	      nsym = lookup_symbol (DEPRECATED_SYMBOL_NAME (sym),
  				    b, VAR_DOMAIN, NULL, NULL);
! 	      if (SYMBOL_CLASS (nsym) == LOC_REGISTER)
  		{
  		  /* There is a LOC_ARG/LOC_REGISTER pair.  This means
  		     that it was passed on the stack and loaded into a
--- 247,257 ----
  	      struct symbol *nsym;
  	      nsym = lookup_symbol (DEPRECATED_SYMBOL_NAME (sym),
  				    b, VAR_DOMAIN, NULL, NULL);
! 	      if (nsym == NULL)
! 		/* Not sure what to do here, but doing nothing 
! 		   should be safe...  */
! 		;
! 	      else if (SYMBOL_CLASS (nsym) == LOC_REGISTER)
  		{
  		  /* There is a LOC_ARG/LOC_REGISTER pair.  This means
  		     that it was passed on the stack and loaded into a

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-07-09 18:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-07-05 23:06 [patch] stack.c, check return value of lookup_symbol msnyder
2007-07-06 15:21 ` Jim Blandy
2007-07-06 19:01   ` msnyder
2007-07-09 18:01     ` Jim Blandy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox