summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-23 02:59:59 +0200
committerLuke from DC <[email protected]>2022-12-13 02:27:53 +0000
commit989bb267a48015db9fe31f56e240076c2fbd0306 (patch)
treee9d6aac9f9307ca45ea95c1c71ee6c60c7055a4e /src
parenta22ba2dd1a36605cdf9888b148ddfe3eda9c01c2 (diff)
downloadmate-notification-daemon-989bb267a48015db9fe31f56e240076c2fbd0306.tar.bz2
mate-notification-daemon-989bb267a48015db9fe31f56e240076c2fbd0306.tar.xz
daemon: fix memory leak
Diffstat (limited to 'src')
-rw-r--r--src/daemon/daemon.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c
index 37d7006..88927ed 100644
--- a/src/daemon/daemon.c
+++ b/src/daemon/daemon.c
@@ -1683,10 +1683,10 @@ static gboolean notify_daemon_get_server_information (NotifyDaemonNotifications
{
notify_daemon_notifications_complete_get_server_information(object,
invocation,
- g_strdup("Notification Daemon"),
- g_strdup("MATE"),
- g_strdup(PACKAGE_VERSION),
- g_strdup("1.1"));
+ "Notification Daemon",
+ "MATE",
+ PACKAGE_VERSION,
+ "1.1");
return TRUE;
}