public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
From: Randy Barlow <randy@electronsweatshop.com>
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] memory leak with gtk+-2.8.20-r1
Date: Wed, 02 Aug 2006 11:14:12 -0400	[thread overview]
Message-ID: <44D0C144.4090405@electronsweatshop.com> (raw)
In-Reply-To: <pan.2006.08.02.10.58.32.324481@free.fr>

gwe wrote:
> Hello,
> I use gtk+ for my soft's graphic interface.
> But valgrind make an log file containing approximately 22700 lines for an
> simple source code like : 
> #include <gtk/gtk.h>
> 
> int main(int argc, char **argv) {
> 	gtk_init(&argc, &argv);
> 	  GtkWidget *win= gtk_window_new(GTK_WINDOW_TOPLEVEL);
> 	  g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(gtk_main_quit), NULL);  
> 	  gtk_widget_show_all(win);
> 	  gtk_main();
> 	  return EXIT_SUCCESS;
> }

For one, you didn't delete the dynamic memory you allocated when you 
were finished with it.  Before EXIT_SUCCESS, add:

delete win;

R
-- 
gentoo-user@gentoo.org mailing list



  parent reply	other threads:[~2006-08-02 15:18 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-02 10:58 [gentoo-user] memory leak with gtk+-2.8.20-r1 gwe
2006-08-02 11:16 ` Hans-Werner Hilse
2006-08-02 15:14 ` Randy Barlow [this message]
  -- strict thread matches above, loose matches on Subject: below --
2006-08-02 11:04 gwe
     [not found] <6FmCn-3KJ-17@gated-at.bofh.it>
     [not found] ` <6FmVF-4oe-19@gated-at.bofh.it>
2006-08-02 11:49   ` gwe
2006-08-02 13:47     ` Hans-Werner Hilse
2006-08-02 15:20       ` Randy Barlow
     [not found] <6FnoP-4ZX-69@gated-at.bofh.it>
     [not found] ` <6FnoP-4ZX-71@gated-at.bofh.it>
     [not found]   ` <6FnoP-4ZX-67@gated-at.bofh.it>
     [not found]     ` <6FpgY-7RO-5@gated-at.bofh.it>
     [not found]       ` <6FqPE-1YI-3@gated-at.bofh.it>
2006-08-02 16:14         ` gwe
2006-08-02 16:24           ` Hans-Werner Hilse

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=44D0C144.4090405@electronsweatshop.com \
    --to=randy@electronsweatshop.com \
    --cc=gentoo-user@lists.gentoo.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