diff options
author | Lars Hanisch <dvb@flensrocker.de> | 2011-12-08 00:07:19 +0100 |
---|---|---|
committer | Lars Hanisch <dvb@flensrocker.de> | 2011-12-08 00:07:19 +0100 |
commit | 6766fad3d51a176dad50698a1b94c460ffd28578 (patch) | |
tree | c204e87d0dc067dc9993b0da216f856f3cbb3604 /dynamicdevice.c | |
parent | f140391bee64a89b7bd91230b1ea0b356cc43768 (diff) | |
download | vdr-plugin-dynamite-6766fad3d51a176dad50698a1b94c460ffd28578.tar.gz vdr-plugin-dynamite-6766fad3d51a176dad50698a1b94c460ffd28578.tar.bz2 |
fix a possible double attach of devices if they have a cardindex set with udevv0.0.8e
Diffstat (limited to 'dynamicdevice.c')
-rw-r--r-- | dynamicdevice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dynamicdevice.c b/dynamicdevice.c index 7327f55..1758cf7 100644 --- a/dynamicdevice.c +++ b/dynamicdevice.c @@ -26,7 +26,7 @@ int cDynamicDevice::IndexOf(const char *DevPath, int &NextFreeIndex, int WishInd isyslog("dynamite: device at slot %d has cardindex %d", i + 1, dynamicdevice[i]->CardIndex()); if ((NextFreeIndex < 0) || ((WishIndex >= 0) && (dynamicdevice[i]->CardIndex() == WishIndex))) { NextFreeIndex = i; - if (dynamicdevice[i]->CardIndex() == WishIndex) + if ((dynamicdevice[i]->CardIndex() == WishIndex) && (index >= 0)) break; } } |