2018-06-11 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug that broke the build when JACK support was disabled.
This commit is contained in:
Fred Gleason 2018-06-11 16:28:57 +00:00
parent 173289d0f6
commit 9daa30ba44
2 changed files with 4 additions and 0 deletions

View File

@ -17043,3 +17043,5 @@
2018-06-11 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rddbmgr(8) that broke --modify when using an
implied schema.
2018-06-11 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug that broke the build when JACK support was disabled.

View File

@ -416,6 +416,7 @@ void MainObject::jackRecordTimerData(int stream)
void MainObject::jackClientStartData()
{
#ifdef JACK
QString sql=QString("select DESCRIPTION,COMMAND_LINE from JACK_CLIENTS where ")+
"STATION_NAME=\""+RDEscapeString(rd_config->stationName())+"\"";
RDSqlQuery *q=new RDSqlQuery(sql);
@ -434,6 +435,7 @@ void MainObject::jackClientStartData()
sleep(1);
}
delete q;
#endif // JACK
}