From dd2e10868c3c57251a46e3580945477efb332806 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ingo=20B=C3=BCrk?= Date: Mon, 1 Jun 2015 17:10:10 +0200 Subject: [PATCH] Fix warning about potentially uninitialized variable. --- src/startup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/startup.c b/src/startup.c index 41f18d00..b062ea8b 100644 --- a/src/startup.c +++ b/src/startup.c @@ -131,7 +131,7 @@ void startup_sequence_delete(struct Startup_Sequence *sequence) { * */ void start_application(const char *command, bool no_startup_id) { - SnLauncherContext *context; + SnLauncherContext *context = NULL; if (!no_startup_id) { /* Create a startup notification context to monitor the progress of this -- 2.39.5