From: Lars Hjemli Date: Sun, 18 May 2008 21:10:05 +0000 (+0200) Subject: cache.c: read(2) returns -1 on error, not 0 X-Git-Tag: v0.8~54 X-Git-Url: https://git.cameronkatri.com/cgit.git/commitdiff_plain/6102bcfce46fd357566941d565b95f78510af79b cache.c: read(2) returns -1 on error, not 0 Noticed-by: Jim Meyering Signed-off-by: Lars Hjemli --- diff --git a/cache.c b/cache.c index b701e13..add647e 100644 --- a/cache.c +++ b/cache.c @@ -52,7 +52,7 @@ static int open_slot(struct cache_slot *slot) return errno; slot->bufsize = read(slot->cache_fd, slot->buf, sizeof(slot->buf)); - if (slot->bufsize == 0) + if (slot->bufsize < 0) return errno; bufz = memchr(slot->buf, 0, slot->bufsize);