PERFORCE change 146842 for review
Gabor Kovesdan
gabor at FreeBSD.org
Thu Aug 7 16:32:22 UTC 2008
http://perforce.freebsd.org/chv.cgi?CH=146842
Change 146842 by gabor at gabor_server on 2008/08/07 16:31:22
- Fix a bug in file reading
Reported by: Stuart Barkley <stuartb at 4gh.net>
Affected files ...
.. //depot/projects/soc2008/gabor_textproc/grep/file.c#30 edit
Differences ...
==== //depot/projects/soc2008/gabor_textproc/grep/file.c#30 (text+ko) ====
@@ -130,7 +130,10 @@
if (binbehave != BINFILE_TEXT) {
for (; i < sizeof(wbinbuf) && !grep_feof(f); i++) {
ch = grep_fgetc(f);
- binbuf[i] = ch;
+ if (ch != EOF)
+ binbuf[i] = ch;
+ else
+ break;
}
binbufsiz = i;
binbufptr = binbuf;
More information about the p4-projects
mailing list