26 lines
797 B
Diff
26 lines
797 B
Diff
|
From 7f6437976d31fa772ccef9abedd152d6f5372303 Mon Sep 17 00:00:00 2001
|
||
|
From: Lukas Nykryn <lnykryn@redhat.com>
|
||
|
Date: Fri, 19 Apr 2013 13:58:58 +0200
|
||
|
Subject: [PATCH] logind-dbus: initialize result variable
|
||
|
|
||
|
---
|
||
|
src/login/logind-dbus.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/login/logind-dbus.c b/src/login/logind-dbus.c
|
||
|
index 4176902..05cc1fd 100644
|
||
|
--- a/src/login/logind-dbus.c
|
||
|
+++ b/src/login/logind-dbus.c
|
||
|
@@ -1137,7 +1137,7 @@ static int bus_manager_can_shutdown_or_sleep(
|
||
|
DBusMessage **_reply) {
|
||
|
|
||
|
bool multiple_sessions, challenge, blocked, b;
|
||
|
- const char *result;
|
||
|
+ const char *result = NULL;
|
||
|
_cleanup_dbus_message_unref_ DBusMessage *reply = NULL;
|
||
|
int r;
|
||
|
unsigned long ul;
|
||
|
--
|
||
|
1.8.2.1
|
||
|
|