From 2a07fc0dea1319ed5c2f3cc2c1e700bf8934a238 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 4 Mar 2010 08:14:21 +0000 Subject: [PATCH] Fix memory leak in RSS --- Changelog | 1 + src/rss.h | 1 + 2 files changed, 2 insertions(+) diff --git a/Changelog b/Changelog index e26390802..f270828ea 100644 --- a/Changelog +++ b/Changelog @@ -2,6 +2,7 @@ - BUGFIX: Fix Web UI authentication with Konqueror - BUGFIX: Fix save path display in properties - BUGFIX: Fix ratio calculation for directly seeded torrents (Thanks phorane) + - BUGFIX: Fix memory leak in RSS parser * Web Feb 10 2010 - Christophe Dumez - v2.1.5 - BUGFIX: Fix actions on selected torrents (non-selected torrents could be affected) diff --git a/src/rss.h b/src/rss.h index cc8bc4497..136991ed2 100644 --- a/src/rss.h +++ b/src/rss.h @@ -92,6 +92,7 @@ public: enum FileType {STREAM, FOLDER}; RssFile(): QObject() {} + virtual ~RssFile() {} virtual unsigned int getNbUnRead() const = 0; virtual FileType getType() const = 0;