You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(3) |
Aug
(3) |
Sep
|
Oct
(1) |
Nov
(5) |
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
(2) |
Mar
(3) |
Apr
(12) |
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
(15) |
Nov
(8) |
Dec
(4) |
2006 |
Jan
|
Feb
|
Mar
(11) |
Apr
(10) |
May
(105) |
Jun
(12) |
Jul
(42) |
Aug
(54) |
Sep
(15) |
Oct
(14) |
Nov
(27) |
Dec
(3) |
2007 |
Jan
(1) |
Feb
(6) |
Mar
(26) |
Apr
(11) |
May
(28) |
Jun
(5) |
Jul
(9) |
Aug
|
Sep
|
Oct
(4) |
Nov
(8) |
Dec
(7) |
2008 |
Jan
(4) |
Feb
(1) |
Mar
|
Apr
|
May
(6) |
Jun
(7) |
Jul
|
Aug
(16) |
Sep
(1) |
Oct
(4) |
Nov
(3) |
Dec
(1) |
2009 |
Jan
(37) |
Feb
(19) |
Mar
(32) |
Apr
(7) |
May
(2) |
Jun
(15) |
Jul
(8) |
Aug
(12) |
Sep
(2) |
Oct
(1) |
Nov
(6) |
Dec
(11) |
2010 |
Jan
(11) |
Feb
(5) |
Mar
(56) |
Apr
(75) |
May
(28) |
Jun
(10) |
Jul
(6) |
Aug
(1) |
Sep
(26) |
Oct
(23) |
Nov
(92) |
Dec
(41) |
2011 |
Jan
(6) |
Feb
(2) |
Mar
(2) |
Apr
(8) |
May
(20) |
Jun
(3) |
Jul
(1) |
Aug
(32) |
Sep
(6) |
Oct
(9) |
Nov
(3) |
Dec
(15) |
2012 |
Jan
(6) |
Feb
(13) |
Mar
|
Apr
(1) |
May
|
Jun
(2) |
Jul
(4) |
Aug
(7) |
Sep
|
Oct
(2) |
Nov
|
Dec
(4) |
2013 |
Jan
(9) |
Feb
(15) |
Mar
(1) |
Apr
|
May
(1) |
Jun
|
Jul
(9) |
Aug
|
Sep
(5) |
Oct
(4) |
Nov
(4) |
Dec
(11) |
2014 |
Jan
|
Feb
(3) |
Mar
(8) |
Apr
|
May
(4) |
Jun
(2) |
Jul
(2) |
Aug
(9) |
Sep
|
Oct
(1) |
Nov
(2) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
(2) |
Apr
(3) |
May
(7) |
Jun
(3) |
Jul
(5) |
Aug
(15) |
Sep
|
Oct
(1) |
Nov
|
Dec
(6) |
2016 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(6) |
Oct
(6) |
Nov
(7) |
Dec
(8) |
2017 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(8) |
2018 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
(10) |
Jun
|
Jul
|
Aug
(5) |
Sep
(4) |
Oct
(3) |
Nov
(3) |
Dec
(4) |
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(40) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-05-07 00:04:44
|
https://bugzilla.gnome.org/show_bug.cgi?id=617980 gnome-perl | Gnome2::GConf | unspecified Summary: Memory leak in GconfClient::get() Classification: Bindings Product: gnome-perl Version: unspecified OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: Normal Component: Gnome2::GConf AssignedTo: gtk...@li... ReportedBy: da...@ko... QAContact: gtk...@li... GNOME target: --- GNOME version: --- Created an attachment (id=160479) View: https://bugzilla.gnome.org/attachment.cgi?id=160479 Review: https://bugzilla.gnome.org/review?bug=617980&attachment=160479 patch for GconfClient::get() memory leak In Gconf::Client provided by rpm perl-Gnome2-GConf.i386-1.044-1.fc8 there appears to be a memory leak in the get method. Running this code snippet while monitoring the script in top is enough to see the issue within a minute: ## <...snip...> my $client = Gnome2::GConf::Client->get_default; while (1) { my $keyhash = $client->get('/my/valid/key'); #print Dumper $keyhash; } ## end Where the key is a valid key when checked by uncommenting the print statement. The issue appears to be that GConf's gconf_client_get() is not being used correctly in GConfClient.xs. gconf_client_get_string() in GConf and the other type-specific methods call gconf_client_get() and then free the GConfValue returned by gconf_client_get() with gconf_value_free(). So it appears that GConfClient.xs's gconf_client_get() should do the same. To fix it I added: CLEANUP: gconf_value_free (RETVAL); to the end of GconfClient.xs's implementation of gconf_client_get(). It resolved the leak for me. Patch attached. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-27 22:27:34
|
https://bugzilla.gnome.org/show_bug.cgi?id=616894 gnome-perl | Pango | unspecified --- Comment #4 from Torsten Schoenfeld <kaf...@gm...> 2010-04-27 22:27:22 UTC --- Sorry, git-bz ate the first line of my comment there. It should have read: I think I found a better fix. Glib provides the means to register packages as aliases for real types. Use this to register all Pango::Attribute subclasses, say Pango::AttrSize, as aliases for Pango::Attribute (i.e., PANGO_TYPE_ATTRIBUTE). This way, when Glib::Boxed::DESTROY tries to look up "Pango::AttrSize", it finds the information registered for "Pango::Attribute", including the correct memory-freeing function. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-27 22:25:09
|
https://bugzilla.gnome.org/show_bug.cgi?id=616894 gnome-perl | Pango | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159650|0 |1 is obsolete| | --- Comment #3 from Torsten Schoenfeld <kaf...@gm...> 2010-04-27 22:24:55 UTC --- Created an attachment (id=159729) View: https://bugzilla.gnome.org/attachment.cgi?id=159729 Review: https://bugzilla.gnome.org/review?bug=616894&attachment=159729 Don't leak Pango::Attribute objects packages as aliases for real types. Use this to register all Pango::Attribute subclasses, say Pango::AttrSize, as aliases for Pango::Attribute (i.e., PANGO_TYPE_ATTRIBUTE). This way, when Glib::Boxed::DESTROY tries to look up "Pango::AttrSize", it finds the information registered for "Pango::Attribute", including the correct memory-freeing function. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-27 10:21:20
|
https://bugzilla.gnome.org/show_bug.cgi?id=616894 gnome-perl | Pango | unspecified André Klapper <a9016009> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |memory -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-26 22:58:03
|
https://bugzilla.gnome.org/show_bug.cgi?id=616894 gnome-perl | Pango | unspecified --- Comment #2 from Torsten Schoenfeld <kaf...@gm...> 2010-04-26 22:57:47 UTC --- Created an attachment (id=159650) View: https://bugzilla.gnome.org/attachment.cgi?id=159650 Review: https://bugzilla.gnome.org/review?bug=616894&attachment=159650 Glib::Boxed::DESTROY: handle unregistered children If a class is set to inherit from Glib::Boxed but is not actually registered as a boxed type (and so has no BoxedInfo associated with it), simply use the default destroy function. This way, at least the BoxedWrapper struct gets freed. FIXME: But what about a boxed wrapper that doesn't use default_boxed_wrap? If another package is set to inherit from that boxed wrapper, Glib::Boxed::DESTROY would still call default_boxed_destroy, which would most likely result in a segfault. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-26 22:57:45
|
https://bugzilla.gnome.org/show_bug.cgi?id=616894 gnome-perl | Pango | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |kaf...@gm..., | |sc...@as... Ever Confirmed|0 |1 --- Comment #1 from Torsten Schoenfeld <kaf...@gm...> 2010-04-26 22:57:34 UTC --- This is due to the way the various attribute wrappers are set up. Pango::Attribute is a real boxed wrapper for a real boxed type. The others, like Pango::AttrSize, are then set up by hand to inherit from Pango::Attribute and thus from Glib::Boxed. If one of these attributes now goes out of scope, Glib::Boxed::DESTROY is called. But since Pango::AttrSize is not registered with the boxed type wrapper machinery, no C-level destroy function is called. I attach a patch for Glib which makes this issue go away, but I think this approach is very incorrect under certain circumstances. See the patch for details. muppet, what do you think? -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-26 21:57:26
|
https://bugzilla.gnome.org/show_bug.cgi?id=616894 gnome-perl | Pango | unspecified Summary: Pango attribute objects leak memory Classification: Bindings Product: gnome-perl Version: unspecified OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: Normal Component: Pango AssignedTo: gtk...@li... ReportedBy: squ...@fr... QAContact: gtk...@li... GNOME target: --- GNOME version: --- I've only tested Pango::AttrSize and Pango::AttrWeight, but I guess it's the same for all of them. Running this : perl -e 'use Pango; Pango::AttrSize->new(10) while 1' will make memory usage grow continuously. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 15:15:43
|
https://bugzilla.gnome.org/show_bug.cgi?id=613973 gnome-perl | Gtk2 | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #157782|none |committed status| | -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 15:15:37
|
https://bugzilla.gnome.org/show_bug.cgi?id=613973 gnome-perl | Gtk2 | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED --- Comment #5 from Torsten Schoenfeld <kaf...@gm...> 2010-04-25 15:15:25 UTC --- Committed. Thanks. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 14:54:35
|
https://bugzilla.gnome.org/show_bug.cgi?id=615598 gnome-perl | Gtk2 | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED --- Comment #2 from Torsten Schoenfeld <kaf...@gm...> 2010-04-25 14:54:20 UTC --- Comitted. Thanks. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 14:54:35
|
https://bugzilla.gnome.org/show_bug.cgi?id=615598 gnome-perl | Gtk2 | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #158550|none |committed status| | -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 14:45:43
|
https://bugzilla.gnome.org/show_bug.cgi?id=615597 gnome-perl | Gtk2 | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #158551|none |committed status| | -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 14:45:40
|
https://bugzilla.gnome.org/show_bug.cgi?id=615597 gnome-perl | Gtk2 | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED --- Comment #2 from Torsten Schoenfeld <kaf...@gm...> 2010-04-25 14:45:27 UTC --- Committed. Thanks. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 00:17:51
|
https://bugzilla.gnome.org/show_bug.cgi?id=615585 gnome-perl | Glib | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED --- Comment #2 from Torsten Schoenfeld <kaf...@gm...> 2010-04-25 00:16:00 UTC --- Committed with a slight change. Thanks. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 00:17:47
|
https://bugzilla.gnome.org/show_bug.cgi?id=615585 gnome-perl | Glib | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #158539|none |committed status| | -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 00:08:37
|
https://bugzilla.gnome.org/show_bug.cgi?id=615587 gnome-perl | Glib | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #158554|none |committed status| | -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 00:08:30
|
https://bugzilla.gnome.org/show_bug.cgi?id=615587 gnome-perl | Glib | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED --- Comment #4 from Torsten Schoenfeld <kaf...@gm...> 2010-04-25 00:08:20 UTC --- Committed. Thanks. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 00:04:45
|
https://bugzilla.gnome.org/show_bug.cgi?id=615589 gnome-perl | Glib | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED --- Comment #2 from Torsten Schoenfeld <kaf...@gm...> 2010-04-25 00:04:30 UTC --- Committed. Thanks. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-25 00:04:45
|
https://bugzilla.gnome.org/show_bug.cgi?id=615589 gnome-perl | Glib | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #158556|none |committed status| | -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-24 23:49:25
|
https://bugzilla.gnome.org/show_bug.cgi?id=613972 gnome-perl | Gtk2 | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kaf...@gm... --- Comment #4 from Torsten Schoenfeld <kaf...@gm...> 2010-04-24 23:49:14 UTC --- The gtk+ code also does gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), TRUE). Should we do the same? -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-24 23:32:29
|
https://bugzilla.gnome.org/show_bug.cgi?id=615796 gnome-perl | Gtk2 | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #158765|none |committed status| | -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-24 23:32:23
|
https://bugzilla.gnome.org/show_bug.cgi?id=615796 gnome-perl | Gtk2 | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED --- Comment #1 from Torsten Schoenfeld <kaf...@gm...> 2010-04-24 23:32:13 UTC --- Committed. Thanks. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-24 23:12:10
|
https://bugzilla.gnome.org/show_bug.cgi?id=614650 gnome-perl | general | unspecified --- Comment #5 from Quentin Sculo <squ...@fr...> 2010-04-24 23:11:54 UTC --- Created an attachment (id=159491) --> (https://bugzilla.gnome.org/attachment.cgi?id=159491) valgrind output output of "valgrind --tool=memcheck --num-callers=50" (also made with the patch) I added the output of a case where it did not crash, for comparison. -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-24 23:06:24
|
https://bugzilla.gnome.org/show_bug.cgi?id=614650 gnome-perl | general | unspecified --- Comment #4 from Quentin Sculo <squ...@fr...> 2010-04-24 23:06:15 UTC --- Created an attachment (id=159490) --> (https://bugzilla.gnome.org/attachment.cgi?id=159490) a few examples of backtraces made with the patch above (Fix a threading bug in dGPERL_CLOSURE_MARSHAL_ARGS) it crashes ~50 % of the times -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |
From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2010-04-24 22:59:04
|
https://bugzilla.gnome.org/show_bug.cgi?id=616059 gnome-perl | Glib | unspecified Torsten Schoenfeld <kaffeetisch> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #158987|none |committed status| | -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |