【发布时间】:2015-01-29 02:07:50
【问题描述】:
我有一个指向结构的指针,结构中的一个对象是一个 int **。双指针用于为二维数组动态分配内存。我无法弄清楚如何释放该数组的内存。有什么想法吗?
struct time_data {
int *week;
int *sec;
int **date;
};
typedef struct time_data time_data;
time_data *getTime(time_data *timeptr, int rows, int cols) {
int i = 0;
time_data time;
// allocate memory for time.date field
time.date = (int **)malloc(rows*(sizeof(int *))); // allocate rows
if(time.date == NULL)
printf("Out of memory\n");
for(i=0; i<rows; i++) {
time.date[i] = (int *)malloc(cols*sizeof(int));
if(time.date[i] == NULL)
printf("Out of memory\n");
}
timeptr = &time;
return timeptr;
}
int main(int argc, const char * argv[]) {
time_data *time = NULL;
int rows = 43200, cols = 6;
int i;
time = getTime(time, rows, cols);
for(i=0; i<rows; i++)
free(time->date[i]); // problem here
free(time->date);
}
修改版(以防其他人有类似问题)
struct time_data {
int *week;
int *sec;
int **date;
};
typedef struct time_data time_data;
time_data *getTime(int rows, int cols) {
int i = 0;
time_data *time = malloc(sizeof(*time));
// allocate memory for time.date field
time->date = (int **)malloc(rows*(sizeof(int *))); // allocate rows
if(time->date == NULL)
printf("Out of memory\n");
for(i=0; i<rows; i++) {
time->date[i] = (int *)malloc(cols*sizeof(int));
if(time->date[i] == NULL)
printf("Out of memory\n");
}
return time;
}
int main(int argc, const char * argv[]) {
time_data *time = NULL;
int rows = 43200, cols = 6;
int i;
time = getTime(rows, cols);
for(i=0; i<rows; i++)
free(time->date[i]); // problem here
free(time->date);
return 0;
}
【问题讨论】:
-
什么想法?你做对了。只需从 malloc 中删除演员表。而且,
printf("Out of memory\n");是不够的,你应该 abort 而不是取消引用指针。 -
您正确地释放了它。但是您没有正确分配它。
getTime正在返回一个无效的局部变量的地址。 -
为什么要从 malloc 中删除演员表?
标签: c pointers struct malloc multidimensional-array