From 6a562c1dfc6cc04608da9730cfad2cde081ffa4d Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Sun, 12 Sep 2010 16:33:43 +0200 Subject: [PATCH] Don't hard-code size hint when reading preprocessed file --- ccache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccache.c b/ccache.c index 8c9045b6d..ef99d814f 100644 --- a/ccache.c +++ b/ccache.c @@ -409,7 +409,7 @@ process_preprocessed_file(struct mdfour *hash, const char *path) char *p, *q, *end; size_t size; - if (!read_file(path, 32768, &data, &size)) { + if (!read_file(path, 0, &data, &size)) { return false; } -- 2.47.2