Blender Git Loki
Git Commits -> Revision c473b2c
Revision c473b2c by Hans Goudey (master) November 5, 2021, 16:19 (GMT) |
Fix part of T89313: Attribute search crash during animation playback During animation playback, data-blocks are reallocated, so storing pointers to the resulting data is not okay. Instead, the data should be retrieved from the context. This works when the applied search item is the "dummy" item added for non-matches. However, it still crashes for every other item, because the memory is owned by the modifier value log, which has been freed by the time the exec function runs. The next part of the solution is to allow uiSearchItems to own memory for the search items. |
Commit Details:
Full Hash: c473b2ce8bdbf8fa42d9780de035d34cb8d0e8a5
Parent Commit: 594ee5f
Lines Changed: +79, -33