C中的三级间接字符指针会导致段故障

时间:2015-07-07 16:41:22

标签: c segmentation-fault segment

我在该行中收到了一个段错误错误,其中包含大量等号的注释。

str_spit下面的函数,我写了它,因为我想使用特定的字符串分割字符串,如逗号等。

请帮忙。

 int str_split(char *a_str, const char delim, char *** result)
    {
       int word_length = 0;
       int cur_cursor = 0;
       int last_cursor = -1;
       int e_count = 0;
       *result = (char **)malloc(6 * sizeof(char *));
       char *char_element_pos = a_str;
       while (*char_element_pos != '\0') {
        if (*char_element_pos == delim) {
            char *temp_word =   malloc((word_length + 1) * sizeof(char));

            int i = 0;
            for (i = 0; i < word_length; i++) {
                temp_word[i] = a_str[last_cursor + 1 + i];
            }

            temp_word[word_length] = '\0';
            //
            *result[e_count] = temp_word;//==============this line goes wrong :(
            e_count++;
            last_cursor = cur_cursor;
            word_length = 0;
        }
        else {
            word_length++;
        }
        cur_cursor++;
        char_element_pos++;
    }
    char *temp_word = (char *) malloc((word_length + 1) * sizeof(char));
    int i = 0;
    for (i = 0; i < word_length; i++) {
        temp_word[i] = a_str[last_cursor + 1 + i];
    }
    temp_word[word_length] = '\0';
    *result[e_count] = temp_word;
    return e_count + 1;
  }

   //this is my caller function====================
  int teststr_split() {
    char delim = ',';
    char *testStr;
    testStr = (char *) "abc,cde,fgh,klj,asdfasd,3234,adfk,ad9";

    char **result;

    int length = str_split(testStr, delim, &result);
    if (length < 0) {
        printf("allocate memroy failed ,error code is:%d", length);
        exit(-1);
    }
      free(result);
      return 0;
    }

2 个答案:

答案 0 :(得分:2)

我认为你的意思是

( *result )[e_count] = temp_word;//

而不是

*result[e_count] = temp_word;//

只有当e_count等于0时,这两个表达式才是等价的。:)

答案 1 :(得分:1)

[]的优先级高于*,因此括号可能会解决此问题:

(*result)[e_count] = temp_word;

我没有在代码中检查更多问题。提示:strtok()可能会很好地完成你的工作。