如何正确释放某些malloc数组元素?

| 我正在使用以下结构和方法:
struct cell {
    double x, y, h, g, rhs;
    struct key *keys;
};

void cellFree(struct cell *c)   {
    free(c->keys);
    c->keys = NULL;
    free(c);
    c = NULL;
}

void cellCopyValues(struct cell *targetcell, struct cell *sourcecell)   {
    targetcell->x = sourcecell->x;  
    targetcell->y = sourcecell->y;  
    targetcell->h = sourcecell->h;  
    targetcell->g = sourcecell->g;  
    targetcell->rhs = sourcecell->rhs;  
    keyCopyValues(targetcell->keys, sourcecell->keys);
}

struct cell * cellGetNeighbors(struct cell *c, struct cell *sstart, struct cell *sgoal, double km)  {
    int i;

    // CREATE 8 CELLS
    struct cell *cn = malloc(8 * sizeof (struct cell));

    for(i = 0; i < 8; i++)  {
        cn[i].keys = malloc(sizeof(struct key));
        cellCopyValues(&cn[i], c);
    }


    return cn;
}

struct cell * cellMinNeighbor(struct cell *c, struct cell *sstart, struct cell *sgoal, double km)   {
    // GET NEIGHBORS of c
    int i;
    struct cell *cn = cellGetNeighbors(c, sstart, sgoal, km);
    double sum[8];
    double minsum;
    int mincell;

    cellPrintData(&cn[2]);

    // *** CHOOSE A CELL TO RETURN
    mincell = 3; // (say)


    // Free memory
    for(i = 0; i < 8; i++)  {
        if(i != mincell)    {
            cellFree(&cn[i]);
        }
    }

    return (&cn[mincell]);
}
当我调用
cellMinNeighbor()
时,我需要根据选择标准返回8个生成的邻居中的一个(从ѭ2one中返回)-但是,我免费应用于其他元素的当前方法似乎给了我以下错误:
*** glibc detected *** ./algo: free(): invalid pointer: 0x0000000001cb81c0 ***
我究竟做错了什么?谢谢。     
已邀请:
您正在分配一个数组,然后尝试释放特定的成员。 您的
cn
被分配为8个
struct cell
的数组,但是您实际上正在尝试释放
&cn[0], &cn[1], &cn[2]
,而实际上尚未使用需要它自己释放的malloc进行分配。 您应该只释放通过malloc获得的那些指针,并且要记住的一个好规则是,释放的数量必须与malloc的数量相对应。 在这种情况下,您分配了
cn
和各个键,而不是
&cn[1]
等。因此,释放它们是一个错误。 如果计算malloc,则有
9
,而空闲空间为
16
。     

要回复问题请先登录注册