免费()期间堆腐败

时间:2013-06-21 16:29:32

标签: c heap-corruption

这是调试信息,

HEAP[opencv_CoTraining2.exe]: Heap block at 0AD15168 modified at 0AD15594 past requested  size of 424
Windows has triggered a breakpoint in opencv_CoTraining2.exe.

This may be due to a corruption of the heap, which indicates a bug in opencv_CoTraining2.exe or any of the DLLs it has loaded.

This may also be due to the user pressing F12 while opencv_CoTraining2.exe has focus.

The output window may have more diagnostic information.

这是我的代码:

void GetKCent(Mat& mat)
{
    double** tmp=(double**)calloc(mat.rows,sizeof(double*));
    double f[128];
    memset(f,0,sizeof(f));
    double max=0;
    for (int i=0;i<mat.rows;i++) 
    {
        tmp[i]=(double*)calloc(mat.cols,sizeof(double));
        for (int j=0;j<mat.cols;j++)
        {
                tmp[i][j]=mat.at<float>(i,j);
                if (tmp[i][j]>max) max=tmp[i][j];
        }
    }
    for (int i=0;i<mat.cols;i++) for (int j=0;j<mat.rows;j++) tmp[j][i]/=max;
    k_means(tmp,mat.rows,128,K_CLUSTER,KMEANSDIS,kcent);
    for (int i=0;i<K_CLUSTER;i++) for (int j=0;j<128;j++) kcent[i][j]*=max;
    for (int i=0;i<mat.rows;i++)free(tmp[i]);
    free(tmp);
}

这条线出现了错误,

for (int i=0;i<mat.rows;i++)free(tmp[i]);

并且函数k_means()不会更改第一个参数。谁能帮帮我?

P.S。 这是k_means()

的定义
int k_means(double **data, int n, int m, int k, double t, double **centroids)

这里是_double ** kcent_

kcent=(double**)calloc(K_CLUSTER,sizeof(double*));
for (int i=0;i<K_CLUSTER;i++) kcent[i]=(double*)calloc(128,sizeof(double));

我认为这部分是正确的。

2 个答案:

答案 0 :(得分:0)

错误消息似乎很清楚它是堆损坏。

尝试在函数调用k_means()上方移动free()for循环,并注释掉程序的其余部分。

我怀疑这是腐败堆的原因!

如果此实验正确释放内存,您知道错误在k_means()函数中...

答案 1 :(得分:-1)

你不使用freeoc中的calloc指针地址,因此free()参数指向的内存起始地址不同。如果我没有错,你就无法获得一大堆内存然后将它们分开,如果这是你想要实现的目标。至少用malloc。

在free()中使用与calloc()相同的值。