typedef struct DNode{
int data;
struct DNode *lLink,*rLink;
} DblNode;
typedef DblNode * DblList;
void DestroyDblList(DblList L){
DblList head=L;
DblList p=head->rLink;
if(head->data){ //p->data is wrong?
while(p->data){
free(head);
head=p;
p=head->rLink;
}
free(head);
}
}
At the line with comments, when I use if(p->data){
my computer tells me
Segmentation fault (core dumped)
but when I use if(head->data){
it is OK.
How did it happen,what is the cause of it?
In your code
p->data
is same ashead->rLink->data
, wherehead->rLink
is not allocated memory. So, segmentation fault [as a side effect of undefined behavior.].On other hand,
head->data
is a perfect access.BTW, you understand that
p->data
andhead->data
are not same [at line56
], right?