[List.cc:248]: (error) Returning/dereferencing 'o' after it is deallocated / released
Source code is
if(action == LIST_REMOVE_DESTROY) delete o; return List::Remove(o);
After something has been deleted, you can't use it.
Log in to post a comment.