[Xfce4-commits] [apps/xfce4-screensaver] 01/01: Fix CID 213286: Unused value
noreply at xfce.org
noreply at xfce.org
Fri Jun 7 03:57:27 CEST 2019
This is an automated email from the git hooks/post-receive script.
b l u e s a b r e p u s h e d a c o m m i t t o b r a n c h m a s t e r
in repository apps/xfce4-screensaver.
commit f5eaa2e0d9e5b526e620cc797e996ec514e372ac
Author: Sean Davis <smd.seandavis at gmail.com>
Date: Thu Jun 6 21:57:22 2019 -0400
Fix CID 213286: Unused value
---
src/xfce4-screensaver-command.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/xfce4-screensaver-command.c b/src/xfce4-screensaver-command.c
index bbd45c1..919f851 100644
--- a/src/xfce4-screensaver-command.c
+++ b/src/xfce4-screensaver-command.c
@@ -382,14 +382,17 @@ do_command (DBusConnection *connection) {
if (do_lock) {
reply = screensaver_send_message_void (connection, "Lock", FALSE);
+ dbus_message_unref (reply);
}
if (do_cycle) {
reply = screensaver_send_message_void (connection, "Cycle", FALSE);
+ dbus_message_unref (reply);
}
if (do_poke) {
reply = screensaver_send_message_void (connection, "SimulateUserActivity", FALSE);
+ dbus_message_unref (reply);
}
if (do_activate) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list