C 中的分段错误与 malloc



我在以下情况下遇到分段错误: 从文件中读取 IP 地址列表时,我将 IP 地址和端口存储在链接列表中。 由于我的 while 循环用于文件读取重复,根据链接列表逻辑 - 当我再次错误地移动我的临时指针时,我面临分段错误。

请在下面找到代码片段:

    struct woker_conf
        { 
           int port; 
           char *ip_address;
           struct worker_conf *next;
        } *head;
    void open(int8_t nbrwrk)
       {
          FILE *fp = NULL;
          char line[1024] = {0};
          int i = 1;
           char *ch;  
          struct worker_conf *config, *temp;
          head = NULL;
          fp = fopen("abcd.txt","r");
          if (fp == NULL)
              exit(1);
          while (fgets(line, sizeof line, fp) != NULL && i<=nbrwrk )    
             {  
                ch = strtok(line,"=");
                while (ch != NULL)
                  {
                     if (strstr(ch,"worker") ! = NULL)
                       {
                     // temp = NULL;-> segmentation fault with and without this line  
                        temp = (struct worker_conf *)malloc(sizeof(struct worker_conf));
                         ch = strtok(NULL," ");
                         strcpy(temp->ip_Address, ch);
                         if (head == NULL) 
                            { head = temp;
                               head->next = NULL;
                             }

                      config = (struct worker_conf *)head;                              
                      while (config->next != NULL)
                          config = config->next;
                      config->next = temp;
                      config = temp;
                      config->next =  NULL;
                    }
              }
         }
  }

文件格式为 :

工人1=10.10.10.1工人2=10.10.10.2(工作人员 1 和工作人员 2 在不同的行中。

读取 worker1 时,执行没有问题。但是,当文件位于第 2 行 - worker2 时,代码在字符串的 malloc 期间给出分段错误。
你能帮我这个吗?

strcpy(temp->ip_Address, ch);

U 应在 strcpy 之前进行 malloc 温度>ip_address

更改以下内容:

if (head = NULL)

if (head == NULL)

==运算符检查两个表达式之间的相等性。
= 是赋值运算符。它将 RHS 的值分配给 LHS 处的变量。

此外,正如 ouaacss 建议的那样,要么为ip_address分配内存,要么将其声明为字符数组。

相关内容

  • 没有找到相关文章

最新更新