This is an automated email from the git hooks/post-receive script.

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit f5eaa2e0d9e5b526e620cc797e996ec514e372ac
Author: Sean Davis <smd.seanda...@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.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to