diff options
author | Ted Gould <ted@gould.cx> | 2010-05-20 21:32:24 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-05-20 21:32:24 -0500 |
commit | bdec50530d6f2aeb3422fc2b6b155181e1712245 (patch) | |
tree | 33047c7cf70c97444da8c6ec0a0e165db4690925 /debian | |
parent | 04a9942b4d950964f74e3bfcc09ca9cefe15d600 (diff) | |
parent | 3096e1044187bb042f64f9c37188782c4fe140f9 (diff) | |
download | ayatana-indicator-application-bdec50530d6f2aeb3422fc2b6b155181e1712245.tar.gz ayatana-indicator-application-bdec50530d6f2aeb3422fc2b6b155181e1712245.tar.bz2 ayatana-indicator-application-bdec50530d6f2aeb3422fc2b6b155181e1712245.zip |
Desktop sync
Diffstat (limited to 'debian')
-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 + |