From 9d14017adafc4829efc9e1393653579ad1d8ed71 Mon Sep 17 00:00:00 2001 From: Pat Notz Date: Thu, 16 Sep 2010 14:53:22 -0600 Subject: [PATCH] dir.c: squelch false uninitialized memory warning GCC 4.4.4 on MacOS incorrectly warns about potential use of uninitialized memory. Signed-off-by: Pat Notz Signed-off-by: Junio C Hamano --- dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dir.c b/dir.c index 133f472a1e..d1e5e5e5bf 100644 --- a/dir.c +++ b/dir.c @@ -232,7 +232,7 @@ int add_excludes_from_file_to_list(const char *fname, { struct stat st; int fd, i; - size_t size; + size_t size = 0; char *buf, *entry; fd = open(fname, O_RDONLY); -- 2.11.4.GIT