我得到了一个" free():无效的指针,中止(核心倾倒)"的消息可能会追溯到我正在做的免费操作。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* ReadFile(char *filename)
{
char *buffer = NULL;
int string_size, read_size;
FILE *handler = fopen(filename, "r");
if (handler)
{
// Seek the last byte of the file
fseek(handler, 0, SEEK_END);
// Offset from the first to the last byte, or in other words,filesize
string_size = ftell(handler);
// go back to the start of the file
rewind(handler);
// Allocate a string that can hold it all
buffer = (char*) malloc(sizeof(char) * (string_size + 1) );
// Read it all in one operation
read_size = fread(buffer, sizeof(char), string_size, handler);
// fread doesn't set it so put a in the last position
// and buffer is now officially a string
buffer[string_size] = ' ';
if (string_size != read_size)
{
// Something went wrong, throw away the memory and set
// the buffer to NULL
free(buffer);
buffer = NULL;
}
// Always remember to close the file.
fclose(handler);
return buffer;
}
return NULL;
}
int newLineCounter(char *string)
{
if(string==NULL)
return -1;
int count=0;
for(int i=0;((string[i])!=' ');i++)
{
if(string[i]=='n')
count++;
}
return count;
}
char ** arrayOfWords(char *str,int max)
{
char **s;
s=malloc(max*(sizeof(char *)+1));
if(str==NULL||max<0)
return NULL;
int count=0;
char *temp=strtok(str,"n");
int size=strlen(temp);
s[0]=malloc((sizeof(char *)*(size+1)));
s[0]=temp;
// int count=0;
while((s!=NULL)&&(count<max-1))
{
count++;
char *temp=strtok(NULL,"n");
int size=strlen(temp);
s[count]=malloc((sizeof(char *)*(size+1)));
s[count]=temp;
}
count++;
s[count]=" ";
return s;
}
int main()
{
char *string = ReadFile("hi.txt");
if(string==NULL) {
printf("%sn","Error,no files here" );
}
else {
int newLines=newLineCounter(string);
char **ret=arrayOfWords(string,newLines);
for(int i=0;i<newLines;i++)
{
printf("%sn",ret[i] );
}
for(int i=0;i<newLines;i++)
{
free((ret[i]));
}
free(ret);
}
return 0;
}
因此,我正在为每个"单词"分配记忆函数,该函数由新的行字符分开。在打印我的主函数中的所有单词后,我首先试图将分配给每个单词的内存释放,然后希望释放释放指针本身。当我尝试在GDB中调试此指针时,我在for循环中设置了一个突破点,我试图释放每个参考。我在第二次迭代期间得到一个sigabrt,我很困惑为什么会发生这种情况。因此,当我试图在释放实际指针之前释放for循环的东西时,发生错误。
欢呼。
您使用malloc
内部功能char ** arrayOfWords(char *str,int max)
1>用于双指针**s
内部功能char ** arrayOfWords(char *str,int max)
。
s=malloc(max*(sizeof(char *)+1));
应该是
s=malloc(max*sizeof(char *));
因为S是指向炭指针数组的指针。
2> **s
中的每个项目。
s[0]=malloc((sizeof(char *)*(size+1)));
s[count]=malloc((sizeof(char *)*(size+1)));
他们应该是
s[0]=malloc((sizeof(char)*(size+1));
s[count]=malloc((sizeof(char)*(size+1)));
因为s [i]现在是指向字符数组的指针。
各种麻烦,但我认为char *temp = strtok(NULL, "n");
是主要的罪魁祸首。
strtok(str, "n");
clapse相邻的 "nn"
陷入一个令牌,后来for (int i = 0; i < newLines; i++) { free((ret[i])); }
正在尝试免费newLines
行,即使仅分配了count
行。
代码也可能错误地尝试免费" "
其他困境
文件可能不会以 'n'
结尾,因此 newLineCounter
被一个。
如果文件包含 null字符,则newLineCounter()
太小。
其他花絮
从fseek(), ftell(), malloc()
避免静默尺寸截断。ftell()
返回long
,strlen()
返回size_t
。
一些未经测试的替代代码:
阅读文件
char *read_file(FILE *f, size_t *sz) {
if (fseek(f, 0, SEEK_END)) return NULL;
long len = ftell(handler);
// If trouble finding the end or file too big ...
if (len == -1 || (unsigned long) len >= SIZE_MAX) return NULL;
*sz = len;
rewind(handler);
char *buffer = malloc(sizeof *buffer * (*sz + 1));
size_t read_size = fread(buffer, sizeof *buffer, *sz, f);
// Reading less than expected is not certainly wrong as the
// ftell technique is not _the_ best way to find file size,
// It may overstate.
// More robust code would use another approach.
buffer[read_size] = ' ';
*sz = read_size;
return buffer;
}
计数线
size_t newLineCounter(const char *mem, size_t sz) {
size_t count=0;
for(size_t i=0; i < sz; i++) {
count += mem[i] == 'n';
}
if (i > 0 && mem[sz-1] != 'n') count++;
return count;
}
线数组
char **arrayOfLines(char *str, size_t sz, size_t line_count) {
char **lines = malloc(sizeof *lines * (line_count + 1));
if (lines == NULL) return NULL;
for(size_t i=0; i < line_count; i++) {
const char *eol = memchr(str, 'n', sz);
size_t len;
if (eol == NULL) {
len = sz;
} else {
len = (size_t)(eol - str + 1);
}
lines[i] = malloc(len + 1);
if (lines[i]) {
memcpy(lines[i], str, len);
lines[i][len] = ' ';
}
str += len;
sz -= len;
}
lines[line_count] = NULL;
return lines;
}