我在堆栈粉碎保护方面遇到了一些严重问题,现在我遇到了一个新错误-分段错误-。我认为这与linux有一些特殊的保护密切相关。有人能解释一下为什么我在这个特殊的案例中会出现分段错误吗?
vector<const char*> Words;
void read(){
FILE* a;
char s[100];
a = fopen("text.txt", "r");
while (!feof(a))
{
fgets(s, 100, a);
char *newAlloc = new char[strlen(s)];
strcpy(newAlloc, s);
Words.push_back(newAlloc);
}
fclose(a);
}
更新:我尝试了所有的解决方案并修改了代码,但问题仍然存在,所以我试图将代码简化为:
#include<iostream>
#include<stdio.h>
int main()
{
FILE* a;
a=fopen("text.txt", "r");
fclose(a);
}
它仍然让我在与fopen的行中出现错误。(这在我解决的练习中是强制性的)-我使用的是Ubuntu 15.10和QT Creator以及GCC编译器。
更新:解决了。我想问题是因为我没有给fopen完整的路径。我是ubuntu的新手。显然有一些不同之处。
char * a = "/home/codrinz/text.txt";
FILE * file = fopen(a, "r");
我看到了几个问题。
-
不要使用
while (!foeof(a))
。请参阅为什么"while(!feof(file))"总是错误的?。 -
你没有为单词分配足够的内存。结果,你最终使用了不该使用的内存。这导致了未定义的行为。
用途:
while (fgets(s, 100, a))
{
char *newAlloc = new char[strlen(s) + 1]; // Add +1 for the terminating null character.
strcpy(newAlloc, s);
Words.push_back(newAlloc);
}