aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-04-12 15:16:57 -0500
committerTed Gould <ted@gould.cx>2011-04-12 15:16:57 -0500
commitf428921733f40e514040ed0af6fea70c2a0a4687 (patch)
treefed8f97b8c973c1adca138e5c4cc17838fa878cf /src
parent0536a41363233ca2663d7e8a5bada3eb80687d73 (diff)
parentd24fd27425f63785fb73b0a96efd21631b4fe8d0 (diff)
downloadayatana-indicator-application-f428921733f40e514040ed0af6fea70c2a0a4687.tar.gz
ayatana-indicator-application-f428921733f40e514040ed0af6fea70c2a0a4687.tar.bz2
ayatana-indicator-application-f428921733f40e514040ed0af6fea70c2a0a4687.zip
* Upstream Merge
* Free app using application_free() instead of just freeing the memory (LP: #743564)
Diffstat (limited to 'src')
-rw-r--r--src/application-service-appstore.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c
index 3e827d5..4cafdfc 100644
--- a/src/application-service-appstore.c
+++ b/src/application-service-appstore.c
@@ -498,7 +498,8 @@ got_all_properties (GObject * source_object, GAsyncResult * res,
if (menu == NULL || id == NULL || category == NULL || status == NULL ||
icon_name == NULL) {
g_warning("Notification Item on object %s of %s doesn't have enough properties.", app->dbus_object, app->dbus_name);
- g_free(app); // Need to do more than this, but it gives the idea of the flow we're going for.
+ if (!app->validated)
+ application_free(app);
}
else {
app->validated = TRUE;