lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> Are you sure about this? It seems that only a pointer to freed memory
> is copied. The pointer itself and its type tag live in the stack,
> which at this point is still alive. There is no access to this pointer
> contents, so there is no reading from freed memory at all (unless the
> assertions are on).

You're right.  The freed pointer is only followed when assertions are
on.  So disregard my last patch.