diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-12-03 23:35:08 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-12-03 23:35:08 +0100 |
commit | 9af622e80841e3c5d56006801f47ce9062cf488d (patch) | |
tree | 79e8b72779553c528818c3fe5a47ea02454ae2b8 | |
parent | 32ab6ecdc0082479744a7c0bec4e138fd69c177f (diff) |
fixed missing variable initialize - before used in condition
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | src/options.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c index ee8e249..69d842c 100644 --- a/src/options.c +++ b/src/options.c @@ -323,6 +323,7 @@ static void print_multiline(const char *prefix, const char *multiline) { const char *start, *end; start = multiline; + end = NULL; do { if (start) { end = strstr(start, sep); |