2016-10-27 22 views
-1

私は、ファイルを取り込み、ファイル内の数字をマトリックスに追加するmainを持っています。他場合(numOfMatrices> 2):私はループでMATCを解放しておりませんので、私は確かにそのを知っているために、私はすべてが働いており、それが正しい答えを出力しますが、valgrindの中で、私はリークを取得しています。それの前に矢印が付いた線は、自由にする必要がある線です。ここで構造体を解放するにはどうすればよいですか?

が主な機能です:

#define _GNU_SOURCE 
#include <stdio.h> 
#include <stdlib.h> 
#include <string.h> 
#include "mmult.h" 

int main(int argc, char* argv[]){ 
    (void) argc; 
    FILE* fp = fopen(argv[0], "r"); 
    char *firstLine = NULL; 
    char *ptr; 
    if (!fp){ 
     fprintf(stderr, "Can't Open File"); 
     return EXIT_FAILURE; 
    } else{ // Gets the number of matrices 
     char *buf = NULL; 
     size_t len = 100; 
     while (getline(&buf, &len, stdin)){ 
      char *pch; 
      pch = strtok(buf, " \n"); 
      firstLine = buf; 
      (void) pch; 
      break; 
     } 
    } 

    int numOfMatrices = strtod(firstLine, &ptr); 
    free(firstLine); 

    // Gets the number of rows and columns of the matrix 
    for (int m = 0; m < numOfMatrices; m++){ 
     int x, y, i, j; 
     Matrices MatA; 
     Matrices MatB; 
     Matrices MatC; 
     Matrices MatD; 
     if (numOfMatrices == 1){ 
      MatA.Matrix = mread(stdin, &x, &y); 
      MatA.row = x; 
      MatA.col = y; 

      printf("%d %d\n", MatA.row, MatA.col); 
      mwrite(stdout, MatA.row, MatA.col, MatA.Matrix); 
      xfree(MatA.row, MatA.col, MatA.Matrix); 
     } else if (numOfMatrices >= 2){ 
      if (numOfMatrices == 2){ 
       if (m == 0){ 
        MatA.Matrix = mread(stdin, &x, &y); 
        MatA.row = x; 
        MatA.col = y; 

        MatB.Matrix = mread(stdin, &i, &j); 
        MatB.row = i; 
        MatB.col = j; 

        MatC.Matrix = mmult(MatA.row, MatA.col, MatA.Matrix, MatB.row, MatB.col, MatB.Matrix); 
        MatC.row = MatA.row; 
        MatC.col = MatB.col; 

        xfree(MatA.row, MatA.col, MatA.Matrix); 
        xfree(MatB.row, MatB.col, MatB.Matrix); 
        printf("%d %d\n", MatC.row, MatC.col); 
        mwrite(stdout, MatC.row, MatC.col, MatC.Matrix); 
        xfree(MatC.row, MatC.col, MatC.Matrix); 
       } 
      } else if (numOfMatrices > 2){ 
       if (m == 0){ 
        MatA.Matrix = mread(stdin, &x, &y); 
        MatA.row = x; 
        MatA.col = y; 

        MatB.Matrix = mread(stdin, &i, &j); 
        MatB.row = i; 
        MatB.col = j; 

       -> MatC.Matrix = mmult(MatA.row, MatA.col, MatA.Matrix, MatB.row, MatB.col, MatB.Matrix); 
        MatC.row = MatA.row; 
        MatC.col = MatB.col; 

        xfree(MatA.row, MatA.col, MatA.Matrix); 
        xfree(MatB.row, MatB.col, MatB.Matrix); 

        for (int x = 2; x < numOfMatrices; x++){ 
         MatD.Matrix = mread(stdin, &i, &j); 
         MatD.row = i; 
         MatD.col = j; 

        -> MatC.Matrix = mmult(MatC.row, MatC.col, MatC.Matrix, MatD.row, MatD.col, MatD.Matrix); 

         xfree(MatD.row, MatD.col, MatD.Matrix); 
         if (x == (numOfMatrices-1)){ 
          printf("%d %d\n", MatC.row, MatC.col); 
          mwrite(stdout, MatC.row, MatC.col, MatC.Matrix); 
          xfree(MatC.row, MatC.col, MatC.Matrix); 
         } 

        } 
       } 
      } 
     } 
    } 
    fclose(fp); 
} 

はまた、ここでは自由が行列だ私のXFree機能があります:

// Free all memory allocated for A 
void xfree(int r, int c, double **A){ 
    (void) c; 
    for (int y = 0; y < r; y++){ 
     free(A[y]); 
    } 
    free(A); 
} 

私も行列のための構造体を作成しました:

typedef struct Matrices{ 
     double **Matrix; // The matrix held in this node 
     int row;   // Number of rows in the Matrix 
     int col;   // Number of Columns in the Matrix 
    } Matrices; 

Valgrind出力:

[email protected]:~/Desktop/Project2$ valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes ./mmult < OneMatrix.txt 
==7984== Memcheck, a memory error detector 
==7984== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. 
==7984== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info 
==7984== Command: ./mmult 
==7984== 
2 2 
    52.00 52.00 
    80.00 80.00 
==7984== 
==7984== HEAP SUMMARY: 
==7984==  in use at exit: 144 bytes in 9 blocks 
==7984== total heap usage: 30 allocs, 21 frees, 133,624 bytes allocated 
==7984== 
==7984== 32 bytes in 2 blocks are indirectly lost in loss record 1 of 4 
==7984== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) 
==7984== by 0x400D11: xalloc (mmult.c:83) 
==7984== by 0x400BF7: mmult (mmult.c:65) 
==7984== by 0x401111: main (mmult-driver.c:86) 
==7984== 
==7984== 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record 2 of 4 
==7984== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) 
==7984== by 0x400CDE: xalloc (mmult.c:81) 
==7984== by 0x400BF7: mmult (mmult.c:65) 
==7984== by 0x401111: main (mmult-driver.c:86) 
==7984== 
==7984== 64 bytes in 4 blocks are indirectly lost in loss record 3 of 4 
==7984== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) 
==7984== by 0x400D11: xalloc (mmult.c:83) 
==7984== by 0x400BF7: mmult (mmult.c:65) 
==7984== by 0x4011A4: main (mmult-driver.c:98) 
==7984== 
==7984== 96 (32 direct, 64 indirect) bytes in 2 blocks are definitely lost in loss record 4 of 4 
==7984== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) 
==7984== by 0x400CDE: xalloc (mmult.c:81) 
==7984== by 0x400BF7: mmult (mmult.c:65) 
==7984== by 0x4011A4: main (mmult-driver.c:98) 
==7984== 
==7984== LEAK SUMMARY: 
==7984== definitely lost: 48 bytes in 3 blocks 
==7984== indirectly lost: 96 bytes in 6 blocks 
==7984==  possibly lost: 0 bytes in 0 blocks 
==7984== still reachable: 0 bytes in 0 blocks 
==7984==   suppressed: 0 bytes in 0 blocks 
==7984== 
==7984== For counts of detected and suppressed errors, rerun with: -v 
==7984== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0) 
[email protected]:~/Desktop/Project2$ 
+0

valgrind出力を追加しました。 – ShaolinGOD

+1

あなたの質問は何ですか?解放される必要があるものを特定したら、なぜ 'xfree'関数を呼び出すことができませんか?あなたがどんな問題を抱えているかは明確ではありません。 – kaylum

+0

'while(...){...;ブレーク; } '!?どうして?if(...){...; } '? –

答えて

1

xfree機能は正常です。問題は、すべての割り当てにxfreeが呼び出されていないことです。MatC.Matrix

MatC.Matrixを変換しようとしているようです。これを行うには、一時的な行列を割り当て、古い行列を一時的にコピーし、古い行列を解放し、古い行列のポインタを一時的な行列に設定します。これに

MatC.Matrix = mmult(MatA.row, MatA.col, MatA.Matrix, MatB.row, MatB.col, MatB.Matrix); 
MatC.row = MatA.row; 
MatC.col = MatB.col; 

xfree(MatA.row, MatA.col, MatA.Matrix); 
xfree(MatB.row, MatB.col, MatB.Matrix); 

for (int x = 2; x < numOfMatrices; x++) 
{ 
    MatD.Matrix = mread(stdin, &i, &j); 
    MatD.row = i; 
    MatD.col = j; 

    MatC.Matrix = mmult(MatC.row, MatC.col, MatC.Matrix, MatD.row, MatD.col, MatD.Matrix); 
    xfree(MatD.row, MatD.col, MatD.Matrix); 

    if (x == (numOfMatrices - 1)) 
    { 
     printf("%d %d\n", MatC.row, MatC.col); 
     mwrite(stdout, MatC.row, MatC.col, MatC.Matrix); 
     xfree(MatC.row, MatC.col, MatC.Matrix); 
    } 
} 

例は、次のセクションを変更

MatC.Matrix = mmult(MatA.row, MatA.col, MatA.Matrix, MatB.row, MatB.col, MatB.Matrix); 
MatC.row = MatA.row; 
MatC.col = MatB.col; 

xfree(MatA.row, MatA.col, MatA.Matrix); 
xfree(MatB.row, MatB.col, MatB.Matrix); 

for (int x = 2; x < numOfMatrices; x++) 
{ 
    MatD.Matrix = mread(stdin, &i, &j); 
    MatD.row = i; 
    MatD.col = j; 

    Matrices temp; 
    temp.Matrix = mmult(MatC.row, MatC.col, MatC.Matrix, MatD.row, MatD.col, MatD.Matrix); 
    xfree(MatD.row, MatD.col, MatD.Matrix); 

    //free MatC.Matrix 
    xfree(MatC.row, MatC.col, MatC.Matrix); 

    //copy pointers from temp to MatC.Matrix 
    MatC.Matrix = temp.Matrix; 
    for (int k = 0; k < temp.row; k++) 
     MatC.Matrix[k] = temp.Matrix[k]; 
    MatC.row = temp.row;//<== added (EDIT ***********) 
    MatC.col = temp.col;//<== added (EDIT ***********) 

    if (x == (numOfMatrices - 1)) 
    { 
     printf("%d %d\n", MatC.row, MatC.col); 
     mwrite(stdout, MatC.row, MatC.col, MatC.Matrix); 
    } 
} 

//add xfree here: 
xfree(MatC.row, MatC.col, MatC.Matrix); 

割り当てとxfreeの数が一致しなければなりません。

+0

あなたは素晴らしいです!すべてのリークを修正しました:) – ShaolinGOD

+0

問題ありません。あなたは以前編集を提出していましたが、よく見ていませんでしたが、 'MatC.Matrix [k] = temp.Matrix [k];' 'MatC.row'と' MatC .col'、おそらくそれは問題を引き起こしていました。 –

関連する問題