From 0f3e594a00cbe7922640a4dc338fed62226c9243 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 8 Jan 2009 21:26:15 +0100 Subject: [PATCH] Fix uninitialized action id variable --- plugins/polkit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/polkit.c b/plugins/polkit.c index de183a2..247721e 100644 --- a/plugins/polkit.c +++ b/plugins/polkit.c @@ -47,7 +47,7 @@ static int polkit_authorize(const char *sender, PolKitCaller *caller; PolKitAction *action; PolKitResult result; - const char *id; + const char *id = NULL; DBG("sender %s", sender); -- 2.7.4