释放数组时出现分段错误(核心转储)

时间:2012-09-17 19:45:03

标签: c

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main(int argc, char * argv[])
{
    /*
        arguments from command line:
        N: dimension of each tuple
        M: maximum possible number of attributes
            a tuple can take
    */
    int N,M;
    N = atoi(argv[1]);
    M = atoi(argv[2]);

    // Ln store attribute range from 0 to Ln[i]-1;
    int * Ln = (int *)malloc(N);
    //int Ln[N];
    //printf("N: %d, M: %d\n",N,M);
    /*
        to generate parameters to file "repo_file.txt"
    */

    int i,seed,p1,p2,p3;
    seed = time(NULL);
    p1 = 762; p2 = 8196; p3 = 9765;
    for(i=0;i<N;i++)
    {
        seed  = (p1*seed+p2)%p3;
        srand(seed);
        Ln[i] = (rand()%M+1);
        printf("%dth element: %d \n",i,Ln[i]);
    }

   free(Ln);
   return 0;
}

我将为上面编码的数组分配一些随机数。 但是,我得到的错误如下:分段错误(核心转储),似乎是由free()调用引起的。

2 个答案:

答案 0 :(得分:7)

您没有分配正确的字节数:

 int * Ln = (int *)malloc(N);

N以字节为单位,您应该使用N * sizeof *Ln

作为旁注,do not cast malloc

答案 1 :(得分:2)

您没有为Ln数组分配足够的空间。您只需分配N 字节,而不是N整数的空间。所以你的循环将遍历数组的末尾。

使用:

int *Ln = malloc(N * sizeof(int));