0

这是数据的结构:

    struct variabile {
        char* nome;         
        char* contenuto;        
        struct variabile* next;     
        int tipo;           
    };

这是代码:

    struct variabile* pt = malloc (sizeof (struct variabile));
            pt->nome = $1; 
            pt->tipo = type; 
            pt->contenuto = $2; 
            pt->next=NULL;      


    if (testaVariabile == NULL) 
            testaVariabile=pt; 
    else {
            struct variabile* current = testaVariabile;


        while ((current->next)!=NULL){  

            if(strcmp(current->nome, pt->nome)==0)
                                    fprintf (stderr, "warning: clash di nome di variabili %s \n", current->nome);
            current=(current->next); 
        }
        (current->next)=pt; 

        if(strcmp(current->nome, pt->nome)==0) 
                fprintf (stderr, "warning: clash di nome di variabili %s \n", current->nome);
    }

这是变量testaVaribile的初始声明。

       struct variabile* testaVariabile = NULL;

当我尝试在最后一行代码中更新current的下一个值时,出现分段错误错误。我还验证了代码没有进入while循环。

我对C很陌生,所以请解释一下答案。

谢谢

编辑

其余代码是一个 Flex 解析器。

编辑

我的一个朋友告诉我使用 gdb 进行调试。结果表明错误来自

       strcmp(current->nome, pt->nome)

我真的很抱歉浪费了在错误的地方寻找问题的时间,但这是我第一次认真对待 C 和 Flex。

有人知道如何摆脱这个问题吗?

好的,最后更新。

检查的答案解决了问题。但是在这种情况下,词法分析器从文件中读取值的方式也有错误,所以这是一个两部分的问题。

4

1 回答 1

0

尝试这个:

struct variabile* pt = malloc (sizeof (struct variabile));
pt->nome = malloc(strlen($1) + 1);
strcpy(pt->nome, $1); 
pt->tipo = type; 
pt->contenuto = $2; // maybe the same for this too?
pt->next=NULL;

/* rest of your code ... */

虽然只是一个疯狂的猜测

于 2013-03-14T02:41:28.213 回答