fputs() 中的分段错误(核心已转储)
Segmentation fault (core dumped) in fputs()
我有以下代码:
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main(){
size_t size;
char *line;
FILE *pipe = fopen("/ftproot/fifo", "r");
if(pipe == NULL){
perror("Could not open pipe for reading");
return EXIT_FAILURE;
}
FILE *out = fopen("/ftproot/output", "w");
if(out == NULL){
perror("Could not open output file for writing");
return EXIT_FAILURE;
}
while (getline(&line, &size, pipe) > 0) {
cout << "<<" << line << ">>\n";
fputs(line, out);
}
return 0;
}
事实证明,如果我删除行 cout << "<<" << line << ">>\n";
,我会收到一个分段错误。但是,如果这一行在代码中,一切正常。
我不知道这怎么可能。我将不胜感激。
提前致谢。
您尚未将 行 设置为 NULL。普通局部变量最初有垃圾。
那么,为什么当您打印该行时它会起作用?变量中的 "garbage" 恰好位于内存中存储变量的位置,并且根据您的代码所做的其他事情,它可以更改。这就是C++标准所说的"undefined behaviour",意思是任何事情都可能发生
我有以下代码:
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main(){
size_t size;
char *line;
FILE *pipe = fopen("/ftproot/fifo", "r");
if(pipe == NULL){
perror("Could not open pipe for reading");
return EXIT_FAILURE;
}
FILE *out = fopen("/ftproot/output", "w");
if(out == NULL){
perror("Could not open output file for writing");
return EXIT_FAILURE;
}
while (getline(&line, &size, pipe) > 0) {
cout << "<<" << line << ">>\n";
fputs(line, out);
}
return 0;
}
事实证明,如果我删除行 cout << "<<" << line << ">>\n";
,我会收到一个分段错误。但是,如果这一行在代码中,一切正常。
我不知道这怎么可能。我将不胜感激。
提前致谢。
您尚未将 行 设置为 NULL。普通局部变量最初有垃圾。
那么,为什么当您打印该行时它会起作用?变量中的 "garbage" 恰好位于内存中存储变量的位置,并且根据您的代码所做的其他事情,它可以更改。这就是C++标准所说的"undefined behaviour",意思是任何事情都可能发生