Fix memory leak of NLA child panel-types

Panel types always need to be registered in the region-panel-types list,
or they won't get free'd.
This commit is contained in:
Julian Eisel 2020-01-28 18:43:41 +01:00
parent 14deacdc22
commit 7b5f09c068
1 changed files with 3 additions and 1 deletions

View File

@ -636,8 +636,9 @@ void nla_buttons_register(ARegionType *art)
pt->flag = PNL_DEFAULT_CLOSED;
pt->poll = nla_strip_eval_panel_poll;
BLI_addtail(&pt_properties->children, BLI_genericNodeN(pt));
BLI_addtail(&art->paneltypes, pt);
pt = MEM_callocN(sizeof(PanelType), "spacetype nla panel evaluation");
pt = MEM_callocN(sizeof(PanelType), "spacetype nla panel animated strip time");
strcpy(pt->idname, "NLA_PT_animated_strip_time");
strcpy(pt->parent_id, "NLA_PT_properties");
strcpy(pt->label, N_("Animated Strip Time"));
@ -649,6 +650,7 @@ void nla_buttons_register(ARegionType *art)
pt->flag = PNL_DEFAULT_CLOSED;
pt->poll = nla_strip_eval_panel_poll;
BLI_addtail(&pt_properties->children, BLI_genericNodeN(pt));
BLI_addtail(&art->paneltypes, pt);
pt = MEM_callocN(sizeof(PanelType), "spacetype nla panel modifiers");
strcpy(pt->idname, "NLA_PT_modifiers");