2017-10-27 6 views
1

문자열 및 배열을 사용하여 CSV 파일에서 txt 파일을 출력하는 다음 코드가 있으며 "input3.h"라이브러리가 출력용 코드입니다 파일을 TXT로 보냅니다. 이 programm에이 Valgrind의에 의해 확인되면,이 programm에 모든 예약 된 저장 공간을 반환 할 수 없으며, 나는이 문제 excist 않는 이유를 이해하지 않는 것이 말했다Valgrind에 의한 C programm check : 모든 예약 된 저장 공간을 반환 할 수 없음

#include <stdio.h> 
#include <stdlib.h> 
#include <string.h> 
#include "input3.h" 

/* Die Konstanten: 
* int MAX_LAENGE_STR - die maximale String Länge 
* int MAX_LAENGE_ARR - die maximale Array Länge 
* sind input3.c auf jeweils 255 und 100 definiert 
*/ 

int main(int argc, char **argv) { 
    if (argc < 3) { 
     printf("Aufruf: %s <anzahl> <bundesland>\n", argv[0]); 
     printf("Beispiel: %s 100 Bayern\n", argv[0]); 
     printf("Klein-/Großschreibung beachten!\n"); 
     exit(1); 
    } 
    int anzahl = atoi(argv[1]); 
    char *bundesland = argv[2]; 

    // Statisch allokierter Speicher 
    char staedte[MAX_LAENGE_ARR][MAX_LAENGE_STR]; 
    char laender[MAX_LAENGE_ARR][MAX_LAENGE_STR]; 
    int bewohner[MAX_LAENGE_ARR]; 

    int len = read_file("staedte.csv", staedte, laender, bewohner); 

    // Hier implementieren 
    char ** jg; 
    int cc = 0; 
    int cc_jg = 0; 

    for(int i = 0; i < len; i++) { 
     if((strcmp(bundesland, laender[i]) == 0) && (bewohner[i] >= anzahl)) { 
      cC++; 
     } 
    } 

    jg = (char **) malloc(MAX_LAENGE_ARR*sizeof(char *));; 
    for (int j = 0; j < len; j++) { 
     jg[j] = (char*)malloc(MAX_LAENGE_STR*sizeof(char)); 
    } 

    for(int i = 0; i < len; i++) { 
     if((strcmp(bundesland, laender[i]) == 0) && (bewohner[i] >= anzahl)) { 
      sprintf(jg[cc_jg], "Die Stadt %s hat %d Einwohner.", staedte[i], bewohner[i]); 
      cc_jg++; 
     } 
    } 

// Mithilfe von write_file(...) soll das Ergebnis in die "resultat.txt" 
    write_file(jg, cc_jg); 

    // Dynamisch allozierter Speicher muss hier freigegeben werden. 
    for(int l = 0; l < cc; l++) { 
     free(jg[l]); 
    } 
    free(jg); 
    return 0; 
} 

내 문제를.

+0

을 A [최소 ** ** 완전하고 검증 가능한 예] (http://stackoverflow.com/help/mcve) 아니에요. 'MAX_LAENGE_ARR' 란 무엇입니까? 'MAX_LAENGE_STR' 란 무엇입니까? 어떻게 정의됩니까? 그들의 가치는 무엇입니까? –

+1

'len' 포인터는 할당하지만'cc' 포인터는 할당하지 않습니다. –

+0

문자열과 배열의 최대 길이로 정의됩니다. 'MAX_LAENGE_STR'의 값은 255이고'MAX_LAENGE_ARR'의 값은 100입니다. – Ryoine

답변

0

jg[j]len 번에 대해 malloc을 실행하지만 cc 번만 해제하십시오.

올바르게 당신이 할 것 :

for(int l = 0; l < len; l++) { 
     free(jg[l]); 
    }