1

我恰好在这一行遇到了分段错误:

while (fgets(line, MAX_LEN + 1, stream) != NULL) {

....

}

其中 MAX_LEN 为 500,行正在读取当前行,并且流通过fopen(filename, "r");

我正在从具有特定格式的文件中读取行,并且根据调试器,我在这一行得到了一个分段错误(核心转储)。

我制作了我的代码,以便它忽略与 scanf 格式不匹配的行。

这是我正在实施的。至少接近它的东西:

int main(int argc, int **argv) {
....
....
if (argc == 1) {
printf("enter file name: ");
scanf("%s", filename);
if (!(stream = fopen(filename, "r"))) {
    perror("Error message goes here.");
    exit(EXIT_FAILURE);
}


} else if (argc == 2) {
stream = fopen(argv[1], "r");
 if (sream == NULL) {
   fprintf(stderr, "error message", argv[1], errno));
   return EX_OSERR;
 }
}

while (fgets(line, MAX_LEN + 1, stream) != NULL) {
 if (sscanf(line, "%49[^@ ]@%49s -> %49[^@ ]@%49s", sender_username, sender_hostname,  receiver_username, receiver_hostname) != 4) {
  continue;
} else {

do work;

}
4

0 回答 0