diff options
author | Jochen Dolze <vdr@dolze.de> | 2009-02-08 21:37:50 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2009-02-08 21:37:50 +0100 |
commit | d20403bc5ade47dea4241291f07b1b18910373e0 (patch) | |
tree | 8c09db5b115741abaf1d8dc87f263f2e95b5f4e8 | |
parent | 51ab5ce2f55399f7229ba5ea41edc4225dd7f412 (diff) | |
download | vdr-plugin-infosatepg-d20403bc5ade47dea4241291f07b1b18910373e0.tar.gz vdr-plugin-infosatepg-d20403bc5ade47dea4241291f07b1b18910373e0.tar.bz2 |
Fixed segfault
-rw-r--r-- | process.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process.cpp b/process.cpp index 6a7e47d..eb3023f 100644 --- a/process.cpp +++ b/process.cpp @@ -732,7 +732,7 @@ bool cProcessInfosatepg::AddInfosatEvent(cChannel *channel, cInfosatevent *iEven // if shorttext is the same as the title -> skip short text // this skips additional bug reporting in epg.c - if (Event->ShortText() && Event->Title()) + if (iEvent->ShortText() && iEvent->Title()) { if (!strcmp(iEvent->ShortText(),iEvent->Title())) { |