mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 07:35:55 +01:00
2021-06-01 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up compile warning in 'lib/rdcart_dialog.cpp'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -21758,3 +21758,5 @@
|
|||||||
'rivendell-webapi' DEB package.
|
'rivendell-webapi' DEB package.
|
||||||
2021-06-01 Fred Gleason <fredg@paravelsystems.com>
|
2021-06-01 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Cleaned up compile warning in 'lib/rdcae.cpp'.
|
* Cleaned up compile warning in 'lib/rdcae.cpp'.
|
||||||
|
2021-06-01 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Cleaned up compile warning in 'lib/rdcart_dialog.cpp'.
|
||||||
|
|||||||
@@ -310,11 +310,16 @@ void RDCartDialog::editorData()
|
|||||||
delete q;
|
delete q;
|
||||||
|
|
||||||
if(fork()==0) {
|
if(fork()==0) {
|
||||||
system((cmd+" &").toUtf8());
|
int exit_code=system((cmd+" &").toUtf8());
|
||||||
|
if(exit_code!=0) {
|
||||||
|
rda->syslog(LOG_WARNING,
|
||||||
|
"editor subprocess returned non-zero exit code %d [%s]",
|
||||||
|
exit_code,strerror(errno));
|
||||||
|
}
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void RDCartDialog::loadFileData()
|
void RDCartDialog::loadFileData()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user