I've been working on list as part of my project in C programming language. FYI, structures of entry and list are very basic data structure and defined as such
typedef struct entry entry_t;
typedef struct list list_t;
struct entry
{
void * data;
entry_t * next;
};
struct list
{
size_t size;
entry_t * head;
entry_t * tail;
};
head and tail point to the first and last entries respectively. There is just no such overhead entry as header but all data entries in list, so if there is only one entry in list, head and tail should point to the same it. Besides, there is such a snippet to delete all entries in list
list_t list;
entry_t * current, * next;
for(
current=list->head,
next=current->next,
free(current);
current!=list->tail;
current=next,
next=current->next,
free(current)
);
The issue is that the comparison between values of memory address current and list->tail point to is evaluated after current pointer is freed. Supposing current and list->tail are now pointing to the same block of memory and then current is freed, what is the result of the evaluation and more importantly, is the result (whatever it is) deterministic in all different compilers in your experience? In my case, the program is compiled in MSVC and runs correctly, which says values of memory address current and list->tail point to are equal after current is freed.


free(current)usingcurrent !=list->tailis undefined behaviour – Omkant Nov 20 '12 at 12:36