mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-06-12 14:20:26 +02:00
2018-10-24 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdadmin(1) that threw a segfault when the 'OK' button wash pushed in the 'Configure RDCatch' dialog.
This commit is contained in:
parent
4e851eedf3
commit
c546bcc0b4
@ -17902,3 +17902,6 @@
|
|||||||
2018-10-24 Fred Gleason <fredg@paravelsystems.com>
|
2018-10-24 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a bug in rddbmgr(8) that caused multiple default records
|
* Fixed a bug in rddbmgr(8) that caused multiple default records
|
||||||
to be created in 'SERVICE_PERMS' when creating a new database.
|
to be created in 'SERVICE_PERMS' when creating a new database.
|
||||||
|
2018-10-24 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a regression in rdadmin(1) that threw a segfault when the
|
||||||
|
'OK' button wash pushed in the 'Configure RDCatch' dialog.
|
||||||
|
@ -771,8 +771,10 @@ void EditDecks::WriteRecord(int chan)
|
|||||||
|
|
||||||
int EditDecks::GetMatrix()
|
int EditDecks::GetMatrix()
|
||||||
{
|
{
|
||||||
if(edit_swmatrix_box->currentItem()<(int)edit_matrix_ids.size()) {
|
if(edit_swmatrix_box->currentItem()>=0) {
|
||||||
return edit_matrix_ids[edit_swmatrix_box->currentItem()];
|
if(edit_swmatrix_box->currentItem()<(int)edit_matrix_ids.size()) {
|
||||||
|
return edit_matrix_ids[edit_swmatrix_box->currentItem()];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user