我正在为一项任务实施tail。我让它正常工作,但我似乎在随机时间免费收到错误。
我看不到,要追踪到一种模式或除此之外的任何东西是一致的。
例如,如果我将我的程序称为“tail -24 test.in”,我会在多次运行的同一行中得到不正确的校验和错误。但是,使用不同的文件,甚至不同的行数要打印回来,我会毫无错误地回来。
关于如何追踪问题的任何想法,我一直在尝试调试它几个小时,但无济于事。
这是有问题的代码:
lines 定义为 char** 并且 malloc 为:
lines = (char**) malloc(nlines * sizeof(char *));
void insert_line(char *s, int len){
printf("\t\tLine Number: %d Putting a %d line into slot: %d\n",processed,len,slot);
if(processed > numlines -1){//clean up
free(*(lines+slot));
*(lines + slot) = NULL;
}
*(lines + slot) = (char *) malloc(len * sizeof(char));
if(*(lines + slot) == NULL) exit(EXIT_FAILURE);
strcpy(*(lines+slot),s);
slot = ++processed % numlines;
}