diff options
-rw-r--r-- | debian/changelog | 9 | ||||
-rw-r--r-- | debian/patches/child-leakage.patch | 17 |
2 files changed, 25 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 33e4127..3e2938b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,11 @@ -indicator-application (0.0.19-0ubuntu4) UNRELEASED; urgency=low +indicator-application (0.0.19-0ubuntu5) lucid-proposed; urgency=low + + * debian/patches/child-leakage.patch + - Fixes a memory leak (LP: #569273) + + -- Ken VanDine <ken.vandine@canonical.com> Thu, 20 May 2010 07:35:33 -0400 + +indicator-application (0.0.19-0ubuntu4) lucid; urgency=low * bindings/mono/appindicator-sharp-0.1.pc.in: + Fix pcfile to point to library install location (LP: #564506) diff --git a/debian/patches/child-leakage.patch b/debian/patches/child-leakage.patch new file mode 100644 index 0000000..35176ff --- /dev/null +++ b/debian/patches/child-leakage.patch @@ -0,0 +1,17 @@ +=== modified file 'src/libappindicator/app-indicator.c' +--- src/libappindicator/app-indicator.c 2010-04-01 20:23:36 +0000 ++++ src/libappindicator/app-indicator.c 2010-05-19 18:23:24 +0000 +@@ -1408,6 +1408,12 @@ + DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, + G_CALLBACK (activate_menuitem), widget); + dbusmenu_menuitem_child_append (root, child); ++ ++ /* Get rid of initial ref now that the root is ++ holding the object */ ++ g_object_unref(child); ++ ++ return; + } + + static void + |