summaryrefslogtreecommitdiff
path: root/thetvdbscraper
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-09-02 17:54:54 +0200
committerlouis <louis.braun@gmx.de>2013-09-02 17:54:54 +0200
commit94a319d1a6ce1035a0d6187e414f2672a27b4ddf (patch)
tree7199a3e727d4b310e7264e5f4c07bed8fcf13104 /thetvdbscraper
parent4ca2771415b5a40609757bf65b07b77108bce6ff (diff)
downloadvdr-plugin-tvscraper-94a319d1a6ce1035a0d6187e414f2672a27b4ddf.tar.gz
vdr-plugin-tvscraper-94a319d1a6ce1035a0d6187e414f2672a27b4ddf.tar.bz2
fixed null pointer access
Diffstat (limited to 'thetvdbscraper')
-rw-r--r--thetvdbscraper/thetvdbscraper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thetvdbscraper/thetvdbscraper.c b/thetvdbscraper/thetvdbscraper.c
index f4b4b83..4e16a03 100644
--- a/thetvdbscraper/thetvdbscraper.c
+++ b/thetvdbscraper/thetvdbscraper.c
@@ -24,7 +24,7 @@ cTVDBScraper::~cTVDBScraper() {
}
void cTVDBScraper::Scrap(const cEvent *event, int recordingID) {
- string seriesName = event->Title();
+ string seriesName = (event->Title())?event->Title():"";
if (overrides->Ignore(seriesName)) {
return;
}