Fix memory leak in RSS

This commit is contained in:
Christophe Dumez
2010-03-04 08:14:21 +00:00
parent be6099a797
commit 2a07fc0dea
2 changed files with 2 additions and 0 deletions

View File

@@ -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 <chris@qbittorrent.org> - v2.1.5
- BUGFIX: Fix actions on selected torrents (non-selected torrents could be affected)

View File

@@ -92,6 +92,7 @@ public:
enum FileType {STREAM, FOLDER};
RssFile(): QObject() {}
virtual ~RssFile() {}
virtual unsigned int getNbUnRead() const = 0;
virtual FileType getType() const = 0;