From 862297ecada056bce29eb603fc6f5e35471409f1 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Thu, 23 Sep 2010 00:20:16 +0200 Subject: [PATCH] initialize result to NULL to shun compiler warning --- i3status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3status.c b/i3status.c index 1b05196..6d6fbc7 100644 --- a/i3status.c +++ b/i3status.c @@ -93,7 +93,7 @@ static int valid_color(const char *value) */ static char *resolve_tilde(const char *path) { static glob_t globbuf; - char *head, *tail, *result; + char *head, *tail, *result = NULL; tail = strchr(path, '/'); head = strndup(path, tail ? (size_t)(tail - path) : strlen(path)); -- 2.39.5