diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-27 12:18:54 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-27 12:18:54 +0000 |
| commit | 73b8a4b3bde5567fae6b29d4a0161b08475e7908 (patch) | |
| tree | 02fc7703bd9e299d5e429b5d758a92c0f38a6287 /lib/dvb/sec.cpp | |
| parent | 9839c2e66f0ac3a7e9ac92240f00badb5bc97064 (diff) | |
| download | enigma2-73b8a4b3bde5567fae6b29d4a0161b08475e7908.tar.gz enigma2-73b8a4b3bde5567fae6b29d4a0161b08475e7908.zip | |
fix segfault after leaving scan in some conditions
Diffstat (limited to 'lib/dvb/sec.cpp')
| -rw-r--r-- | lib/dvb/sec.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb/sec.cpp b/lib/dvb/sec.cpp index c13334d1..6cd4f255 100644 --- a/lib/dvb/sec.cpp +++ b/lib/dvb/sec.cpp @@ -1051,12 +1051,12 @@ PyObject *eDVBSatelliteEquipmentControl::get_different_satellites(int tu1, int t // check for linked tuners int tmp1, tmp2; p1->m_frontend->getData(7, tmp1); - p2->m_frontend->setData(7, tmp2); + p2->m_frontend->getData(7, tmp2); if ((void*)tmp1 != p2 && (void*)tmp2 != p1) { // check for rotor dependency p1->m_frontend->getData(8, tmp1); - p2->m_frontend->setData(8, tmp2); + p2->m_frontend->getData(8, tmp2); if ((void*)tmp1 != p2 && (void*)tmp2 != p1) { // here we know the tuners are not linked and no rotor dependency exist. |
