aboutsummaryrefslogtreecommitdiff
path: root/src/application-service-watcher.c
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2012-03-13 15:38:47 -0500
committerCharles Kerr <charles.kerr@canonical.com>2012-03-13 15:38:47 -0500
commitfed02bf9683b491b5db0196495377671594de98b (patch)
tree2c0c0f68b4bf82d150bd4cd4c9e977ec5e4b9d4b /src/application-service-watcher.c
parentd518799d9aa5a6fc509398d25849831f9109d8d9 (diff)
parent8e26e844c5f42d55257b6f8e52634314d134b4d8 (diff)
downloadayatana-indicator-application-fed02bf9683b491b5db0196495377671594de98b.tar.gz
ayatana-indicator-application-fed02bf9683b491b5db0196495377671594de98b.tar.bz2
ayatana-indicator-application-fed02bf9683b491b5db0196495377671594de98b.zip
Import upstream version 0.4.93
Diffstat (limited to 'src/application-service-watcher.c')
-rw-r--r--src/application-service-watcher.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/application-service-watcher.c b/src/application-service-watcher.c
index 50b0be9..1c12eee 100644
--- a/src/application-service-watcher.c
+++ b/src/application-service-watcher.c
@@ -249,9 +249,11 @@ _notification_watcher_server_register_status_notifier_item (ApplicationServiceWa
ApplicationServiceWatcherPrivate * priv = APPLICATION_SERVICE_WATCHER_GET_PRIVATE(appwatcher);
if (service[0] == '/') {
+ char * sender = dbus_g_method_get_sender(method);
application_service_appstore_application_add(priv->appstore,
- dbus_g_method_get_sender(method),
+ sender,
service);
+ g_free(sender);
} else {
application_service_appstore_application_add(priv->appstore,
service,
@@ -293,9 +295,11 @@ _notification_watcher_server_x_ayatana_register_notification_approver (Applicati
{
ApplicationServiceWatcherPrivate * priv = APPLICATION_SERVICE_WATCHER_GET_PRIVATE(appwatcher);
+ char * sender = dbus_g_method_get_sender(method);
application_service_appstore_approver_add(priv->appstore,
- dbus_g_method_get_sender(method),
+ sender,
path);
+ g_free(sender);
dbus_g_method_return(method, G_TYPE_NONE);
return TRUE;