No, my understand is thus: next = current.next; theAllocator.dispose(current);When current is deallocated, current is pointing to free'd memory. After that point it should be segfaulting when you try to access it *I think*.
Huh, alright. I see what you mean. I'll keep this in mind.