Fixed conflict in 'ChangeLog'

This commit is contained in:
Fred Gleason 2019-05-31 12:45:34 -04:00
commit 28a7c46e3b
2 changed files with 4 additions and 2 deletions

View File

@ -18701,6 +18701,8 @@
background color codes were inaccurate.
2019-05-31 Patrick Linstruth <patrick@deltecent.com>
* Fixed bug in rdlogmanager(1) deconflicting rules.
2019-05-28 Patrick Linstruth <patrick@deltecent.com>
2019-05-31 Patrick Linstruth <patrick@deltecent.com>
* Added RD_PREFIX to rddbmgr(1) path and process start error
message dialog to rddbconfig(1).
2019-05-31 Patrick Linstruth <patrick@deltecent.com>
* Fixed bug in 'RDWaveFile' class that exhausted file handles.

View File

@ -231,7 +231,7 @@ bool RDWaveFile::openWave(RDWaveData *data)
if((fd=open(wave_file_name.toUtf8(),O_RDONLY))<0) {
return false;
}
if(!wave_file.open(fd,QIODevice::ReadOnly)) {
if(!wave_file.open(fd,QIODevice::ReadOnly,QFile::AutoCloseHandle)) {
return false;
}
switch(GetType(wave_file.handle())) {