Browse Source

2023-01-18 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdservice(8) that could cause dropboxes to be
	instantiated with invalid segue level values.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
master
Fred Gleason 4 months ago
parent
commit
5b08dc312c
  1. 3
      ChangeLog
  2. 2
      rdservice/startup.cpp

3
ChangeLog

@ -20966,3 +20966,6 @@
* Fixed a bug in rdlibrary(1) that caused the field names for the
'FILENAME' and 'LENGTH' fields in the 'Cart Data Dump (CSV)' report
to be corrupted.
2023-01-18 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdservice(8) that could cause dropboxes to be
instantiated with invalid segue level values.

2
rdservice/startup.cpp

@ -279,7 +279,7 @@ bool MainObject::StartDropboxes(QString *err_msg)
}
if(q->value(22).toInt()<1) {
args.push_back(QString().sprintf("--segue-level=%d",
q->value(22).toInt()));
q->value(22).toInt()/100));
args.push_back(QString().sprintf("--segue-length=%u",
q->value(23).toUInt()));
}

Loading…
Cancel
Save