summaryrefslogtreecommitdiff
path: root/vcs-svn/line_buffer.c
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2010-10-11 02:51:21 (GMT)
committerJonathan Nieder <jrnieder@gmail.com>2011-03-07 07:32:51 (GMT)
commitefc749b48f729992d838484d652ba24f5291ee28 (patch)
treed1d410f8035f5632f5b286554df78af04c1c8250 /vcs-svn/line_buffer.c
parente75316de5340e0ba3ac75937c59fa2c9d6ab48d7 (diff)
downloadgit-efc749b48f729992d838484d652ba24f5291ee28.zip
git-efc749b48f729992d838484d652ba24f5291ee28.tar.gz
git-efc749b48f729992d838484d652ba24f5291ee28.tar.bz2
vcs-svn: allow input errors to be detected promptly
The line_buffer library silently flags input errors until buffer_deinit time; unfortunately, by that point usually errno is invalid. Expose the error flag so callers can check for and report errors early for easy debugging. some_error_prone_operation(...); if (buffer_ferror(buf)) return error("input error: %s", strerror(errno)); Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: David Barr <david.barr@cordelta.com> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Diffstat (limited to 'vcs-svn/line_buffer.c')
-rw-r--r--vcs-svn/line_buffer.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/vcs-svn/line_buffer.c b/vcs-svn/line_buffer.c
index aedf105..eb8a6a7 100644
--- a/vcs-svn/line_buffer.c
+++ b/vcs-svn/line_buffer.c
@@ -59,6 +59,11 @@ long buffer_tmpfile_prepare_to_read(struct line_buffer *buf)
return pos;
}
+int buffer_ferror(struct line_buffer *buf)
+{
+ return ferror(buf->infile);
+}
+
int buffer_read_char(struct line_buffer *buf)
{
return fgetc(buf->infile);