gpt4 book ai didi

c - glibc 检测到 free() : invalid next size (fast)

转载 作者:IT王子 更新时间:2023-10-29 01:10:27 29 4
gpt4 key购买 nike

此代码生成随机数,然后根据对有关间隔的函数的输入生成直方图。 “bins”表示直方图区间,“bin_counts”保存给定区间内随机数的数量。

我已经查看了几篇处理类似问题的帖子,我知道我在内存中的某个地方超出了范围,但 GBD 只将我指向“免费(垃圾箱)”;在代码的末尾。我仔细检查了我的数组长度,我认为它们在不访问不存在的元素/写入未分配的内存方面都是正确的。奇怪的是代码按预期工作,它生成了一个准确的直方图,现在我只需要帮助清理这个 free() invalid next size 错误。如果有人有任何建议,我将不胜感激。整个输出是:

检测到 glibc ./file: free(): invalid next size (fast): 0x8429008

后面是内存中的一堆地址,由Backtrace和Memory Map隔开。Backtrace 仅将我指向第 129 行,即“free(bins);”。提前致谢

    #include "stdio.h"
#include "string.h"
#include "stdlib.h"

void histo(int N, double m, double M, int nbins, int *bin_counts, double *bins);

int main(int argc, char* argv[])
{

int *ptr_bin_counts;
double *ptr_bins;

histo(5,0.0,11.0,4, ptr_bin_counts, ptr_bins);

return 0;
}

void histo(int N, double m, double M, int nbins, int *bin_counts, double *bins)
{

srand(time(NULL));
int i,j,k,x,y;
double interval;
int randoms[N-1];
int temp_M = (int)M;
int temp_m = (int)m;
interval = (M-m) /((double)nbins);


//allocating mem to arrays
bins =(double*)malloc(nbins * sizeof(double));
bin_counts =(int*)malloc((nbins-1) * sizeof(int));

//create bins from intervals
for(j=0; j<=(nbins); j++)
{
bins[j] = m + (j*interval);
}

//generate "bin_counts[]" with all 0's
for(y=0; y<=(nbins-1); y++)
{
bin_counts[y] = 0;
}


//Generate "N" random numbers in "randoms[]" array
for(k =0; k<=(N-1); k++)
{
randoms[k] = rand() % (temp_M + temp_m);
printf("The random number is %d \n", randoms[k]);
}

//histogram code
for(i=0; i<=(N-1); i++)
{
for(x=0; x<=(nbins-1); x++)
{
if( (double)randoms[i]<=bins[x+1] && (double)randoms[i]>=bins[x] )
{
bin_counts[x] = bin_counts[x] + 1;
}
}
}
free(bins);
free(bin_counts);
}

最佳答案

bins =(double*)malloc(nbins * sizeof(double));
bin_counts =(int*)malloc((nbins-1) * sizeof(int));

//create bins from intervals
for(j=0; j<=(nbins); j++)
{
bins[j] = m + (j*interval);
}

//generate "bin_counts[]" with all 0's
for(y=0; y<=(nbins-1); y++)
{
bin_counts[y] = 0;
}

你越界了你的数组,你为 nbins double 分配位置但写入 nbins+1 位置,并使用 nbins 位置 bin_counts 但只分配了 nbins-1

关于c - glibc 检测到 free() : invalid next size (fast),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9073148/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com