0

C で csv パーサーを作成しようとしていますが、この関数で segfault が発生するたびに発生します。修正方法がわかりません。

char*** csv_loader(char *filename){
FILE* file_xx;
file_xx = fopen(filename, "r");
if(file_xx==NULL){
    printf("Failed to open File, no such file or directory!\n");
    return 0;
}
int c_=0;
int **linenumbers;
int l=lines(filename);
linenumbers=malloc(sizeof(int)*l);
char*** loaded_csv;
int counter_line=0;
int counter_row=0;
loaded_csv=malloc(sizeof(char **) *l);
loaded_csv[0][0]=malloc(getfirstcolumn(filename)*sizeof(char)+2);
if(NULL==loaded_csv){
    printf("Failed to initialize 'char** loaded_csv'!\n");
    return 0;
}
int c_c=0;
int *cm=get_column_map(filename);
for(c_c=0;c_c<l;c_c++){
    loaded_csv[c_c]=malloc(sizeof(char *)*cm[c_c]);
}
while(c_!=EOF){
    c_=getc(file_xx);
    if(c_=='\n'){
        linenumbers[counter_line][cm[counter_line]]=counter_row+2;
        loaded_csv[counter_line][cm[counter_line]]=malloc(counter_row*sizeof(char));
        if(NULL == loaded_csv[counter_line][cm[counter_line]]){
        return 0;
        }
        loaded_csv[counter_line][counter_row]='\0';
        counter_row=0;
        counter_line++;
    }else{
        if(c_==','){
            counter_row=0;
        }else{
            counter_row++;
        }
    }
}
fclose(file_xx);
FILE*fgetsread;
fgetsread=fopen(filename, "r");
int ident, ident_c;
for(ident=0;ident<l;ident++){
    for(ident_c=0;ident_c<cm[ident];ident_c++){
        fgets(loaded_csv[ident][ident_c], linenumbers[ident][ident_c], fgetsread);
        loaded_csv[ident][ident_c][linenumbers[ident][ident_c]-2]='\0';
    }
}
fclose(fgetsread);
free(linenumbers);
return loaded_csv;
}

デバッガーは、次の行だと言っています。

    loaded_csv[0][0]=malloc(getfirstcolumn(filename)*sizeof(char)+2);

誰がバグが何であるか知っていますか?私はまだCに慣れていないので、とにかくmallocのことを理解しようとしています...

PS: 他の機能はこちら: http://pastebin.com/VQZ4d5UU

4

2 に答える 2

0

この行に問題があります:

loaded_csv[0][0]=malloc(getfirstcolumn(filename)*sizeof(char)+2);  

これは、loaded_csv[0][0] を正しく割り当てて初期化していないことを示唆しています。

char ***var を初期化して使用する方法の例を次に示します。

#include <windows.h>
#include <ansi_c.h>
char *** Create3D(int p, int c, int r);
int main(void)
{
    char ***pppVar;

    pppVar = Create3D(10,10,10);  
    //test pppVar;
    strcpy(pppVar[0][0], "asdfasf");
    strcpy(pppVar[0][1], "the ball");

    return 0;
}   

char *** Create3D(int p, int c, int r) 
{
    char *space;
    char  ***arr;
    int    x,y;

    space = calloc (p*c*r*sizeof(char),sizeof(char));
    arr = calloc(p * sizeof(char **), sizeof(char));
    for(x = 0; x < p; x++)
    {
        arr[x] = calloc(c * sizeof(char *),sizeof(char));
        for(y = 0; y < c; y++)
        {
            arr[x][y] = ((char *)space + (x*(c*r) + y*r));
        }
    }
    return arr;
}  

free(x) を適切に追跡してください。

于 2013-08-30T18:10:14.763 に答える