Realloc指针在不同的函数中被malloced

时间:2016-01-19 02:52:23

标签: c pointers memory malloc realloc

我有这个功能:

static void unfoldLines(char **pbuff, char **lines, int foldCount) {
    int i, j;

    for(i = 1; i <= foldCount; i++) {
        removeEOL(lines[i]);
        for(j = 0; j < strlen(lines[i]); j++) {
            while(isspace(lines[i][j])) {
                lines[i]++;
            }
        }
    }

    lines[1] = realloc(lines[1], sizeof(char) * (strlen(lines[1]) +
                strlen(lines[2]) + 1));
    exit(0);
}

lines并且它的指针已在前一个函数中进行了malloced。当我尝试重新分配行[1]时,我收到此错误:

malloc: *** error for object 0x7fcec0404fe1: pointer being realloc'd was not allocated

我知道它已被malloced,所以为什么不能在这个函数中重新分配?

1 个答案:

答案 0 :(得分:2)

lines[1]在for循环中递增。您应该保留从malloc()返回的原始指针,并将其与realloc()一起使用。

此外,realloc()可能会失败,因此您应该将realloc()的返回值存储在临时指针中,并且仅在成功传输到原始指针时存储。