***“./threads”中的错误:损坏的双链表:0x00000000009bb240 *** fclose

时间:2013-05-02 23:17:31

标签: c fclose

我需要制作一个程序,首先,从文本文件中读取矩阵并将其放在内存中。我能够这样做,但是当我尝试用4行或更多行的矩阵关闭文件时,它会给出错误: * ./threads'错误:损坏的双链表:0x0000000001b4e240 * 读取文件的代码是:

    void leitura_matriz1 ()
{
    char linha_s[MAX_LINHA];
    char *buffer;

    // leitura da primeira matriz
    FILE * matriz1_file;
    matriz1_file = fopen ("in1.txt","r");
    if (matriz1_file == NULL)
    {
        printf ("Erro na abertura do arquivo\n");
        exit(1);
    }

    // número de linhas
    fgets(linha_s, MAX_LINHA, matriz1_file);
    buffer = strtok(linha_s, " =");
    buffer = strtok(NULL, " =");
    linhas_mat1 = atoi(buffer);

    // número de colunas
    fgets(linha_s, MAX_LINHA, matriz1_file);
    buffer = strtok(linha_s, " =");
    buffer = strtok(NULL, " =");
    colunas_mat1 = atoi(buffer);

    // aloca espaço para a matriz
    matriz1 = (int**) malloc(linhas_mat1 * sizeof(int));
    if (matriz1 == NULL)
    {
        printf("erro memória");
        exit(1);
    }
    int lin, col;
    for (lin = 0; lin < linhas_mat1; lin++)
    {
        matriz1[lin] = (int*) malloc(colunas_mat1 * sizeof(int));
        if (matriz1[lin] == NULL)
        {
            printf ("erro memória 2");
            exit(1);
        }
    }

    // lê os valores do arquivo e coloca na matriz em memória
    for (lin = 0; lin < linhas_mat1; lin++)
    {
        fgets(linha_s, MAX_LINHA, matriz1_file);
        buffer = strtok(linha_s, " ");
        for (col = 0; col < colunas_mat1; col++)
        {
            matriz1[lin][col] = atoi(buffer);
            buffer = strtok(NULL, " ");
        }
    }

    fclose (matriz1_file);  
}

文件格式为:

LINHAS = 4
COLUNAS = 3
5 5 5
5 5 5
5 5 5
5 5 5

LINHAS是line和COLUNAS列 当文件仍然打开时,我从未收到过关闭文件的错误。并且只有当文件有超过3行(4行或更多行)时才会发生。有人知道它可能是什么?

1 个答案:

答案 0 :(得分:2)

第一次分配不正确。而不是:

matriz1 = (int**) malloc(linhas_mat1 * sizeof(int));

应该是:

matriz1 = (int**) malloc(linhas_mat1 * sizeof(int*));

异常消息(8个字节)似乎表示64位应用程序,因此指针将是8个字节,而sizeof(int)可能只是4个字节。这会在填充数组时导致内存覆盖。