disable force canceling for now to prevent crashes

pull/2/merge
Hoernchen 2013-01-10 01:07:39 +01:00
rodzic 1cde8634ca
commit f1ac20c371
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -1657,11 +1657,12 @@ int rtlsdr_cancel_async(rtlsdr_dev_t *dev)
}
/* if called while in pending state, change the state forcefully */
#if 0
if (RTLSDR_INACTIVE != dev->async_status) {
dev->async_status = RTLSDR_INACTIVE;
return 0;
}
#endif
return -2;
}