12 Mar
2014
12 Mar
'14
1:07 p.m.
On Wed, Mar 12, 2014 at 08:34:39AM +0100, Lars-Peter Clausen wrote:
Freeing the current list element while iterating over the list will cause a use after free since the iterator function will still use the current element to look up the next. Use list_for_each_safe() and remove the element from the list before freeing it to avoid this.
Applied, thanks.