释放void指针数组,在释放第一个元素后崩溃

时间:2017-04-13 19:50:49

标签: c arrays memory-management

我有这样一个简单的程序,它将一个void*数组包装到一个带有长度和自动调整大小的结构中。虽然在我释放第一个元素后崩溃了。

Gif that illustrates my problem

#include "stdafx.h"
#include "array.h"
#include "error_handler.h"

#define RESIZE_STEP 3

Array * new_array(int initial_length, size_t size_of_element)
{
    Array* temp_struct = NULL;
    temp_struct = (Array*)malloc(sizeof(Array));
    void** temp_array = NULL;
    temp_array = (void**)malloc(initial_length * size_of_element);
    if (!temp_array) {
        if (print_message(MEMORY_ALLOCATION_ERROR) == BREAK)
        {
            deallocate_tab(temp_struct);
            temp_array = NULL;
            exit(1);
        }
    }

    for (int i = 0; i < initial_length; i++) {
        temp_array[i] = malloc(size_of_element);
        if (!temp_array[i] && print_message(MEMORY_ALLOCATION_ERROR) == BREAK) {
            deallocate_tab(temp_struct);
            temp_array = NULL;
            exit(1);
        }
        else {
            temp_array[i] = NULL;
        }
    }

    temp_struct->array = temp_array;
    temp_struct->length = 0;
    temp_struct->max_length = initial_length;

    return temp_struct;

}

Array * deallocate_tab(Array * vector)
{
    if (vector) {
        void** tab = vector->array;
        if (tab)
        {
            int M = _msize(tab) / sizeof(void *);  //ilosc wierszy w macierzy str
            for (int i = 0; i < M; ++i)
            {
                if (tab[i])
                {
                    free(tab[i]);
                    tab[i] = NULL;
                }
            }

            free(tab);
            tab = NULL;
        }
        free(vector);
        vector = NULL;
    }
    return vector;
}

释放循环的第一次迭代顺利进行,在Debuger中我可以读取我的值,但是在释放数组中的第一项后,其他所有项似乎都是不存在的,我可以查找它们。

为什么会这样?

1 个答案:

答案 0 :(得分:0)

在c中,仅通过查看就无法确定数组的大小。即这不起作用

int M = _msize(tab) / sizeof(void *);

您需要传递大小以及指向其基础的指针