diff options
author | Michael Stapelberg <michael@stapelberg.de> | 2010-09-23 00:20:16 +0200 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2010-09-23 00:20:16 +0200 |
commit | 862297ecada056bce29eb603fc6f5e35471409f1 (patch) | |
tree | 255b8e383b104c978513d661241bf8797a0d47c4 | |
parent | adda6b4dd5b755433311ddf4a6a57cc6842fb55d (diff) |
initialize result to NULL to shun compiler warning
-rw-r--r-- | i3status.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |