mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 04:50:29 -04:00 
			
		
		
		
	LimeSDR: fixed segfault when stopping one device in multiple stream confguration. Issue #119
This commit is contained in:
		
							parent
							
								
									44c2c16e18
								
							
						
					
					
						commit
						885ed4885f
					
				| @ -34,7 +34,7 @@ static int runQtApplication(int argc, char* argv[], qtwebapp::LoggerWithFile *lo | ||||
| */ | ||||
| 	QCoreApplication::setOrganizationName("f4exb"); | ||||
| 	QCoreApplication::setApplicationName("SDRangel"); | ||||
| 	QCoreApplication::setApplicationVersion("3.10.0"); | ||||
| 	QCoreApplication::setApplicationVersion("3.10.1"); | ||||
| 
 | ||||
| #if 1 | ||||
| 	qApp->setStyle(QStyleFactory::create("fusion")); | ||||
|  | ||||
| @ -55,7 +55,7 @@ static int runQtApplication(int argc, char* argv[], qtwebapp::LoggerWithFile *lo | ||||
| 
 | ||||
|     QCoreApplication::setOrganizationName("f4exb"); | ||||
|     QCoreApplication::setApplicationName("SDRangelSrv"); | ||||
|     QCoreApplication::setApplicationVersion("3.10.0"); | ||||
|     QCoreApplication::setApplicationVersion("3.10.1"); | ||||
| 
 | ||||
|     int catchSignals[] = {SIGQUIT, SIGINT, SIGTERM, SIGHUP}; | ||||
|     std::vector<int> vsig(catchSignals, catchSignals + sizeof(catchSignals) / sizeof(int)); | ||||
|  | ||||
							
								
								
									
										6
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							| @ -1,3 +1,9 @@ | ||||
| sdrangel (3.10.1-1) unstable; urgency=medium | ||||
| 
 | ||||
|   * LimeSDR: fixed segfault when stopping one device in multiple stream confguration | ||||
| 
 | ||||
|  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Sun, 07 Jan 2018 23:14:18 +0100 | ||||
| 
 | ||||
| sdrangel (3.10.0-1) unstable; urgency=medium | ||||
| 
 | ||||
|   * Implemented external command handling from the GUI | ||||
|  | ||||
| @ -83,7 +83,10 @@ bool LimeSDROutput::openDevice() | ||||
|         qDebug("LimeSDROutput::openDevice: look in Ix buddies"); | ||||
| 
 | ||||
|         DeviceSinkAPI *sinkBuddy = m_deviceAPI->getSinkBuddies()[0]; | ||||
|         m_deviceShared = *((DeviceLimeSDRShared *) sinkBuddy->getBuddySharedPtr()); // copy shared data
 | ||||
|         //m_deviceShared = *((DeviceLimeSDRShared *) sinkBuddy->getBuddySharedPtr()); // copy shared data
 | ||||
|         DeviceLimeSDRShared *deviceLimeSDRShared = (DeviceLimeSDRShared*) sinkBuddy->getBuddySharedPtr(); | ||||
|         m_deviceShared.m_deviceParams = deviceLimeSDRShared->m_deviceParams; | ||||
| 
 | ||||
|         DeviceLimeSDRParams *deviceParams = m_deviceShared.m_deviceParams; // get device parameters
 | ||||
| 
 | ||||
|         if (deviceParams == 0) | ||||
| @ -134,7 +137,9 @@ bool LimeSDROutput::openDevice() | ||||
|         qDebug("LimeSDROutput::openDevice: look in Rx buddies"); | ||||
| 
 | ||||
|         DeviceSourceAPI *sourceBuddy = m_deviceAPI->getSourceBuddies()[0]; | ||||
|         m_deviceShared = *((DeviceLimeSDRShared *) sourceBuddy->getBuddySharedPtr()); // copy parameters
 | ||||
|         //m_deviceShared = *((DeviceLimeSDRShared *) sourceBuddy->getBuddySharedPtr()); // copy parameters
 | ||||
|         DeviceLimeSDRShared *deviceLimeSDRShared = (DeviceLimeSDRShared*) sourceBuddy->getBuddySharedPtr(); | ||||
|         m_deviceShared.m_deviceParams = deviceLimeSDRShared->m_deviceParams; | ||||
| 
 | ||||
|         if (m_deviceShared.m_deviceParams == 0) | ||||
|         { | ||||
|  | ||||
| @ -34,7 +34,7 @@ | ||||
| 
 | ||||
| const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = { | ||||
|     QString("LimeSDR Output"), | ||||
|     QString("3.9.0"), | ||||
|     QString("3.10.1"), | ||||
|     QString("(c) Edouard Griffiths, F4EXB"), | ||||
|     QString("https://github.com/f4exb/sdrangel"), | ||||
|     true, | ||||
|  | ||||
| @ -101,7 +101,10 @@ bool LimeSDRInput::openDevice() | ||||
|         qDebug("LimeSDRInput::openDevice: look in Rx buddies"); | ||||
| 
 | ||||
|         DeviceSourceAPI *sourceBuddy = m_deviceAPI->getSourceBuddies()[0]; | ||||
|         m_deviceShared = *((DeviceLimeSDRShared *) sourceBuddy->getBuddySharedPtr()); // copy shared data
 | ||||
|         //m_deviceShared = *((DeviceLimeSDRShared *) sourceBuddy->getBuddySharedPtr()); // copy shared data
 | ||||
|         DeviceLimeSDRShared *deviceLimeSDRShared = (DeviceLimeSDRShared*) sourceBuddy->getBuddySharedPtr(); | ||||
|         m_deviceShared.m_deviceParams = deviceLimeSDRShared->m_deviceParams; | ||||
| 
 | ||||
|         DeviceLimeSDRParams *deviceParams = m_deviceShared.m_deviceParams; // get device parameters
 | ||||
| 
 | ||||
|         if (deviceParams == 0) | ||||
| @ -152,7 +155,9 @@ bool LimeSDRInput::openDevice() | ||||
|         qDebug("LimeSDRInput::openDevice: look in Tx buddies"); | ||||
| 
 | ||||
|         DeviceSinkAPI *sinkBuddy = m_deviceAPI->getSinkBuddies()[0]; | ||||
|         m_deviceShared = *((DeviceLimeSDRShared *) sinkBuddy->getBuddySharedPtr()); // copy parameters
 | ||||
|         //m_deviceShared = *((DeviceLimeSDRShared *) sinkBuddy->getBuddySharedPtr()); // copy parameters
 | ||||
|         DeviceLimeSDRShared *deviceLimeSDRShared = (DeviceLimeSDRShared*) sinkBuddy->getBuddySharedPtr(); | ||||
|         m_deviceShared.m_deviceParams = deviceLimeSDRShared->m_deviceParams; | ||||
| 
 | ||||
|         if (m_deviceShared.m_deviceParams == 0) | ||||
|         { | ||||
| @ -219,7 +224,8 @@ void LimeSDRInput::suspendTxBuddies() | ||||
|     { | ||||
|         DeviceLimeSDRShared *buddySharedPtr = (DeviceLimeSDRShared *) (*itSink)->getBuddySharedPtr(); | ||||
| 
 | ||||
|         if (buddySharedPtr->m_thread) { | ||||
|         if ((buddySharedPtr->m_thread) && buddySharedPtr->m_thread->isRunning()) | ||||
|         { | ||||
|             buddySharedPtr->m_thread->stopWork(); | ||||
|             buddySharedPtr->m_threadWasRunning = true; | ||||
|         } | ||||
|  | ||||
| @ -33,7 +33,7 @@ | ||||
| 
 | ||||
| const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = { | ||||
|     QString("LimeSDR Input"), | ||||
|     QString("3.9.0"), | ||||
|     QString("3.10.1"), | ||||
|     QString("(c) Edouard Griffiths, F4EXB"), | ||||
|     QString("https://github.com/f4exb/sdrangel"), | ||||
|     true, | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user