From 1466e249e741e3ef907e8c48c2861742b676e255 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 1 Dec 2009 16:46:21 -0800 Subject: [PATCH] getdelim: Silence a (bogus) compiler warning. Some compilers complain that result might be used uninitialized in this function. I believe such compilers simply aren't looking hard enough, but it's easy enough to silence them. --- compat/getdelim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat/getdelim.c b/compat/getdelim.c index 1bedef7c..407f3d07 100644 --- a/compat/getdelim.c +++ b/compat/getdelim.c @@ -54,7 +54,7 @@ ssize_t getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp) { - ssize_t result; + ssize_t result = -1; size_t cur_len = 0; if (lineptr == NULL || n == NULL || fp == NULL) -- 2.43.0