13
0

Fix a moderate memory leak

periodic calls ARDOUR_UI::update_clocks() -> AudioClock::set()
-> 2+ calls to UI::set_tip() can easily accumulate 50MB/hour
when rolling.
This commit is contained in:
Robin Gareus 2021-05-22 22:11:42 +02:00
parent 17b7d92244
commit 42f4e64d5f
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -517,6 +517,7 @@ UI::do_request (UIRequest* req)
) {
gtk_widget_set_tooltip_markup (req->widget->gobj(), req->msg);
}
g_free (old);
} else {