summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-23 02:59:59 +0200
committerraveit65 <[email protected]>2023-05-11 18:33:47 +0200
commit954106793cfba1cc5bb3a740dd14373ff30ee14f (patch)
tree702ac008bf5a761683bbe1d4c3ad1412ef0d3d6c
parentad27c3ccaffc5fd36189073a713f7536563ab816 (diff)
downloadmate-notification-daemon-954106793cfba1cc5bb3a740dd14373ff30ee14f.tar.bz2
mate-notification-daemon-954106793cfba1cc5bb3a740dd14373ff30ee14f.tar.xz
daemon: fix memory leak
-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 3b09873..dac1b9f 100644
--- a/src/daemon/daemon.c
+++ b/src/daemon/daemon.c
@@ -1685,10 +1685,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;
}