[PATCH] Die for an early EOF in a file reading loop
From: Heikki Orsila <hidden>
Date: 2016-06-15 22:44:32
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Heikki Orsila <hidden>
Date: 2016-06-15 22:44:32
Subsystem:
the rest · Maintainer:
Linus Torvalds
The resulting data is zero terminated after the read loop, but the subsequent loop that scans for '\n' will overrun the buffer. Signed-off-by: Heikki Orsila <redacted> --- Yes, I know it is highly improbable that the file size changes between fstat() and read(), but so is read error on media. combine-diff.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/combine-diff.c b/combine-diff.c
index 0e19cba..a4269f6 100644
--- a/combine-diff.c
+++ b/combine-diff.c@@ -719,8 +719,8 @@ static void show_patch_diff(struct combine_diff_path *elem, int num_parent, while (sz < len) { ssize_t done = xread(fd, result+sz, len-sz); if (done == 0) - break; - if (done < 0) + die("early EOF '%s'", elem->path); + else if (done < 0) die("read error '%s'", elem->path); sz += done; }
--
1.5.4.4