diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-06-05 08:32:08 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-06-05 08:32:08 +0000 |
| commit | e9932209c5f7a46f1545352eaeb3aa881434c490 (patch) | |
| tree | 7578b9cb5020a0500e5ffe3b3fa5e5736deb6273 /lib/dvb/scan.cpp | |
| parent | 1d927cd236d6e31e29f8b5049bc4ffb59a0245a5 (diff) | |
| download | enigma2-e9932209c5f7a46f1545352eaeb3aa881434c490.tar.gz enigma2-e9932209c5f7a46f1545352eaeb3aa881434c490.zip | |
fix scan was not working on transponders withut PAT (Hispasat)
Diffstat (limited to 'lib/dvb/scan.cpp')
| -rw-r--r-- | lib/dvb/scan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dvb/scan.cpp b/lib/dvb/scan.cpp index f9d7547e..c4d4c6f4 100644 --- a/lib/dvb/scan.cpp +++ b/lib/dvb/scan.cpp @@ -157,7 +157,7 @@ RESULT eDVBScan::startFilter() if (startSDT && (m_ready_all & readySDT)) { m_SDT = new eTable<ServiceDescriptionSection>(); - if (m_ready & readyPAT) + if (m_ready & readyPAT && m_ready & validPAT) { std::vector<ProgramAssociationSection*>::const_iterator i = m_PAT->getSections().begin(); |
