I am reading a plain text from a file - by lines, with a following function:
int readline(FILE *in, char * buf) {
char c;
buf[0]='\0';
for (int i=0; i<BUFSIZ-1; i++) {
fread(&c,1,1,in);
if (ferror(in)) return 1;
if (feof(in)) break;
buf[i]=c;
if (c=='\n') break;
}
if (buf[BUFSIZ-1]!='\0') return 1;
return 0;
}
It reads correctly 28816 characters, and then the trouble starts. Instead of reading the next four characters:
' ' 'f' 'o' 'r'
it reads the weird thing:
'\x01' '\0' '\0' '\0'
After that, it reads everything correctly until 33080 character. Instead of reading next 12 characters correctly, it reads three sequences:
'\x01' '\0' '\0' '\0' '\x01' '\0' '\0' '\0' '\x01' '\0' '\0' '\0'
Then, it reads everything correctly again, until certain point.
There weren't neither (ferror(in)) nor (feof(in)) condition true when this problem occurs.
Do you have any ideas about the cause of this problem?
fgets(buf, bufsize, in);, right? – Jerry Coffin Feb 23 '12 at 20:15buf[i]=c, I putif (c=='\x01') {c='\x01';}and put a brakepoint forc='\x01'line. That way, I could get to the place where an error occurs, and using "step over instruction" debug feature, check what happens next. – Jake Badlands Feb 23 '12 at 20:59