diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-07-22 15:53:35 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-07-22 15:53:35 +0800 |
commit | 370a95a23d6475cffcb1a82a81ee65c683371853 (patch) | |
tree | 079be887f0796f21269fbf43a0bae49912399bf3 /embed/mozilla/GtkNSSClientAuthDialogs.cpp | |
parent | 10ca2e6a8a062e7736c1e58ccc6e15b57edf91c2 (diff) | |
download | gsoc2013-epiphany-370a95a23d6475cffcb1a82a81ee65c683371853.tar gsoc2013-epiphany-370a95a23d6475cffcb1a82a81ee65c683371853.tar.gz gsoc2013-epiphany-370a95a23d6475cffcb1a82a81ee65c683371853.tar.bz2 gsoc2013-epiphany-370a95a23d6475cffcb1a82a81ee65c683371853.tar.lz gsoc2013-epiphany-370a95a23d6475cffcb1a82a81ee65c683371853.tar.xz gsoc2013-epiphany-370a95a23d6475cffcb1a82a81ee65c683371853.tar.zst gsoc2013-epiphany-370a95a23d6475cffcb1a82a81ee65c683371853.zip |
Fix mem leaks (ported from Galeon).
2004-07-22 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/GtkNSSClientAuthDialogs.cpp:
* embed/mozilla/GtkNSSDialogs.cpp:
Fix mem leaks (ported from Galeon).
Diffstat (limited to 'embed/mozilla/GtkNSSClientAuthDialogs.cpp')
-rw-r--r-- | embed/mozilla/GtkNSSClientAuthDialogs.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/embed/mozilla/GtkNSSClientAuthDialogs.cpp b/embed/mozilla/GtkNSSClientAuthDialogs.cpp index b3196dd75..d2fb15fa4 100644 --- a/embed/mozilla/GtkNSSClientAuthDialogs.cpp +++ b/embed/mozilla/GtkNSSClientAuthDialogs.cpp @@ -221,6 +221,7 @@ GtkNSSClientAuthDialogs::ChooseCertificate (nsIInterfaceRequestor *ctx, } combo = gtk_combo_box_new_with_model (GTK_TREE_MODEL (store)); + g_object_unref (store); renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, TRUE); |