Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [RFC] Fix BFD leak in solib-darwin.c
@ 2019-02-22 16:36 Tom Tromey
  2019-02-23  0:32 ` Pedro Alves
       [not found] ` <184aefb1-38fc-cc39-0f3a-4bd350c47e11@FreeBSD.org>
  0 siblings, 2 replies; 8+ messages in thread
From: Tom Tromey @ 2019-02-22 16:36 UTC (permalink / raw)
  To: gdb-patches; +Cc: Tom Tromey

commit 192b62ce0b4bb5c61188f570e127a26d2c32f716 ("Use class to manage
BFD reference counts") changed darwin_get_dyld_bfd to use:

+	dyld_bfd.release ();

rather than

-      do_cleanups (cleanup);

However, using release here leaks the BFD.  Instead I believe reset
should be used instead.

I can't readily test this, so please take a look and let me know what
you think.

gdb/ChangeLog
2019-02-22  Tom Tromey  <tromey@adacore.com>

	* solib-darwin.c (darwin_get_dyld_bfd): Use reset, not release.
---
 gdb/ChangeLog      | 4 ++++
 gdb/solib-darwin.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gdb/solib-darwin.c b/gdb/solib-darwin.c
index d3060604bad..da410ad4660 100644
--- a/gdb/solib-darwin.c
+++ b/gdb/solib-darwin.c
@@ -455,7 +455,7 @@ darwin_get_dyld_bfd ()
       if (sub != NULL)
 	dyld_bfd = sub;
       else
-	dyld_bfd.release ();
+	dyld_bfd.reset (nullptr);
     }
   return dyld_bfd;
 }
-- 
2.20.1


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

end of thread, other threads:[~2019-02-26 22:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-22 16:36 [RFC] Fix BFD leak in solib-darwin.c Tom Tromey
2019-02-23  0:32 ` Pedro Alves
2019-02-25 13:51   ` Tom Tromey
     [not found] ` <184aefb1-38fc-cc39-0f3a-4bd350c47e11@FreeBSD.org>
2019-02-22 21:43   ` John Baldwin
2019-02-25 13:50     ` Tom Tromey
2019-02-26 20:19   ` Tom Tromey
2019-02-26 20:36     ` John Baldwin
2019-02-26 22:02       ` Tom Tromey

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