mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-09-16 16:30:26 +02:00
Fixed conflict in 'ChangeLog'
This commit is contained in:
commit
28a7c46e3b
@ -18701,6 +18701,8 @@
|
|||||||
background color codes were inaccurate.
|
background color codes were inaccurate.
|
||||||
2019-05-31 Patrick Linstruth <patrick@deltecent.com>
|
2019-05-31 Patrick Linstruth <patrick@deltecent.com>
|
||||||
* Fixed bug in rdlogmanager(1) deconflicting rules.
|
* 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
|
* Added RD_PREFIX to rddbmgr(1) path and process start error
|
||||||
message dialog to rddbconfig(1).
|
message dialog to rddbconfig(1).
|
||||||
|
2019-05-31 Patrick Linstruth <patrick@deltecent.com>
|
||||||
|
* Fixed bug in 'RDWaveFile' class that exhausted file handles.
|
||||||
|
@ -231,7 +231,7 @@ bool RDWaveFile::openWave(RDWaveData *data)
|
|||||||
if((fd=open(wave_file_name.toUtf8(),O_RDONLY))<0) {
|
if((fd=open(wave_file_name.toUtf8(),O_RDONLY))<0) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if(!wave_file.open(fd,QIODevice::ReadOnly)) {
|
if(!wave_file.open(fd,QIODevice::ReadOnly,QFile::AutoCloseHandle)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
switch(GetType(wave_file.handle())) {
|
switch(GetType(wave_file.handle())) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user