Fix #105078: Regression: Memory leak in driver UI drawing code

Just a missing call to `MEM_freeN()`.

The issue was introduced in c592bff047.
This commit is contained in:
illua1
2023-02-22 20:06:01 +03:00
committed by Sybren A. Stüvel
parent 482fb791ce
commit f2250b7a5b

View File

@@ -942,6 +942,7 @@ static void graph_panel_drivers_header(const bContext *C, Panel *panel)
}
graph_draw_driven_property_enabled_btn(panel->layout, ale->id, fcu, IFACE_("Driver"));
MEM_freeN(ale);
}
static void graph_draw_driven_property_panel(uiLayout *layout, ID *id, FCurve *fcu)