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

* Fixed a bug in 'RDStation::remove()' where the 'AUDIO_INPUTS'
	was failed to be purged of stale host entries.
This commit is contained in:
Fred Gleason 2018-06-26 13:50:34 +00:00
parent c71ed5eccb
commit a2f37d7b9a
2 changed files with 4 additions and 1 deletions

View File

@ -17068,3 +17068,6 @@
2018-06-26 Fred Gleason <fredg@paravelsystems.com>
* Added support for filepath wildcards to the JACK client command
lines.
2018-06-26 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'RDStation::remove()' where the 'AUDIO_INPUTS'
was failed to be purged of stale host entries.

View File

@ -2053,7 +2053,7 @@ void RDStation::remove(const QString &name)
q=new RDSqlQuery(sql);
delete q;
sql=QString("delete from AUDIO_INPUT where ")+
sql=QString("delete from AUDIO_INPUTS where ")+
"STATION_NAME=\""+RDEscapeString(name)+"\"";
q=new RDSqlQuery(sql);
delete q;