用realloc收缩矩阵

时间:2016-11-28 22:27:17

标签: c dynamic realloc calloc

我目前正在尝试了解动态内存分配的工作原理。 我有这段代码:

int main()
{
    int **mat, i;

    mat = calloc(3, sizeof(int*));
    for(i = 0; i < 3; i++)
        mat[i] = calloc(3, sizeof(int));

    mat = realloc(mat, 1*sizeof(int*));
    for(i = 0; i < 1; i++)
        mat[i] = realloc(mat[i], 1*sizeof(int));

    for(i = 0; i < 1; i++)
        free(mat[i]);
    free(mat);

    return 0;
} 

我已经用valgrind检查了内存泄漏:

 24 bytes in 2 blocks are definitely lost in loss record 1 of 1
 at 0x4C2C975: calloc (vg_replace_malloc.c:711)
 by 0x400605: main (main.c:10)

LEAK SUMMARY:
  definitely lost: 24 bytes in 2 blocks
  indirectly lost: 0 bytes in 0 blocks
    possibly lost: 0 bytes in 0 blocks
  still reachable: 0 bytes in 0 blocks
     suppressed: 0 bytes in 0 blocks

如果我重新分配到n * sizeof(int),其中n&gt;,则不会发生泄漏。 1。 为什么会这样?

1 个答案:

答案 0 :(得分:3)

当你减少mat数组大小时,你丢失了一些mat[i]指针。即mat[1]mat[2]。在执行free之前,您需要手动realloc在缩小realloc期间丢失的任何指针。