Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [patch] Set bfd field in target_section
@ 2009-07-28 14:46 Aleksandar Ristovski
  2009-07-28 14:51 ` Pedro Alves
  0 siblings, 1 reply; 11+ messages in thread
From: Aleksandar Ristovski @ 2009-07-28 14:46 UTC (permalink / raw)
  To: gdb-patches

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

Hello,

I believe this is related to Pedro's patch from 03-Jun-09. I 
didn't see where we set target_section.bfd field - maybe I 
am overlooking something, but in bfd-target, in function 
target_bfd_xclose we will call bfd_close 
(table->sections->bfd); bfd_close doesn't like NULL argument.

Am I missing something, or is this (the patch) missing?

Patch attached.

Thanks,

-- 
Aleksandar Ristovski
QNX Software Systems

ChangeLog:

* exec.c (build_section_table): Setup section_table bfd field.

[-- Attachment #2: exec_c-20090728.diff --]
[-- Type: text/x-patch, Size: 641 bytes --]

Index: gdb/exec.c
===================================================================
RCS file: /cvs/src/src/gdb/exec.c,v
retrieving revision 1.90
diff -u -p -r1.90 exec.c
--- gdb/exec.c	2 Jul 2009 17:21:06 -0000	1.90
+++ gdb/exec.c	28 Jul 2009 14:21:09 -0000
@@ -441,6 +441,7 @@ build_section_table (struct bfd *some_bf
   bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end);
   if (*end > *start + count)
     internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
+  (*start)->bfd = (*end)->bfd = some_bfd;
   /* We could realloc the table, but it probably loses for most files.  */
   return 0;
 }

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

end of thread, other threads:[~2009-08-08 16:39 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-28 14:46 [patch] Set bfd field in target_section Aleksandar Ristovski
2009-07-28 14:51 ` Pedro Alves
2009-07-28 14:59   ` Pedro Alves
2009-07-28 15:06   ` Aleksandar Ristovski
2009-07-28 16:22     ` Pedro Alves
2009-07-28 16:37       ` Aleksandar Ristovski
2009-07-28 16:37         ` Pedro Alves
2009-07-28 21:48           ` Aleksandar Ristovski
2009-08-08 16:54             ` Pedro Alves
2009-07-28 15:16   ` Pedro Alves
2009-07-28 15:57     ` Aleksandar Ristovski

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