From 22f69da0e365e209f03b0006459f739d6ecd5d13 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Tue, 3 May 2016 17:52:43 +0200 Subject: [PATCH] Uninitialized variables taste bad. --- list_special.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/list_special.c b/list_special.c index 412803254a..cce644eb91 100644 --- a/list_special.c +++ b/list_special.c @@ -58,7 +58,7 @@ struct string_list *dir_list_new_special(const char *input_dir, (void)input_dir; (void)settings; - (void)ext_shaders; + ext_shaders[0] = '\0'; switch (type) {