What can cause VTable pointer to be 0xffffdffffddd in Win32 debug build?

后端 未结 4 1487
遇见更好的自我
遇见更好的自我 2021-01-11 15:40

I am debugging a defect and have narrowed it down to the vtable pointer for an object being 0xffffdffffddd. This answer indicates that Win32 debug builds will gene

4条回答
  •  悲哀的现实
    2021-01-11 16:17

    If pMyObject->someMethod() ultimately ends up modifying the myObjects list it will invalidate any of the current iterators.

    Additionally if the pointer data is already deleted this will trigger the same issue.

提交回复
热议问题