我有一个项目,我在其中创建了一个存储单词的 2D char 数组,可以选择添加更多单词,然后在必要时调整数组的大小。当我尝试使用它并修复它时,我遇到了各种错误,所以现在我认为我需要对我的代码多加注意。我专门寻找任何明显不正确或麻烦的分配内存或初始化数组的方式。
我得到的特定于此代码的错误说“free():无效指针”并导致 SIGABRT。下面是我的代码。
这是我的调整大小功能。
char ** resize_array(char **array)
{
int i;
char** tmp = malloc(2 * sizeof(*array));
int j;
for(j = 0; j < (2 * sizeof(*array)); j++)
tmp[j] = malloc(2 * sizeof(*array));
for(i = 0; i < (sizeof *words); i++)
{
strcpy(tmp[i], words[i]);
}
for(i = 0; words[i] != NULL; i++)
free(words[i]);
free(words);
return tmp;
}
这是我正在实现的调整大小功能
int len;
len = (sizeof words);
if(upperbound > len) //upperbound keeps track of the word count
//and resizes the array
{
char **tmp = resize_array((char **) words);
int i;
for(i = 0; i <= upperbound; i++)
strcpy(words[i], tmp[i]);
}
最后是最初初始化的“单词”数组。
char words[14][50];
我正在使用 VI 并在 Ubuntu 上运行所有内容,仅供参考。提前感谢大家的帮助!