From d8bab5a49fbd36ce57547cbf922e650ea50c0e67 Mon Sep 17 00:00:00 2001 From: Jim Broadus Date: Tue, 13 Nov 2018 00:09:15 -0800 Subject: [PATCH] Fix memory leak in PodcastInfoWidget. (#6202) --- src/internet/podcasts/podcastinfowidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internet/podcasts/podcastinfowidget.cpp b/src/internet/podcasts/podcastinfowidget.cpp index d14fbbaa0..d1c365854 100644 --- a/src/internet/podcasts/podcastinfowidget.cpp +++ b/src/internet/podcasts/podcastinfowidget.cpp @@ -47,7 +47,7 @@ PodcastInfoWidget::PodcastInfoWidget(QWidget* parent) } } -PodcastInfoWidget::~PodcastInfoWidget() {} +PodcastInfoWidget::~PodcastInfoWidget() { delete ui_; } void PodcastInfoWidget::SetApplication(Application* app) { app_ = app;