Skip to content

Fixes leak in Animation Track editor

Rafał Mikrut requested to merge github/fork/timothyqiu/ani-track-leak into master

Created by: timothyqiu

This fixes #31962 (closed)

  • multi_key_edit
    • was not initialized to NULL in constructor
    • was not deleted in destructor
    • the delete code before reassignment never got executed
  • NodePath
    • was used in a strange way (*memnew(NodePath) instead of NodePath()), and never got deleted

Merge request reports