mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-08 16:37:46 +02: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:
parent
a9648de976
commit
8b19d28c17
@ -21758,3 +21758,5 @@
|
||||
'rivendell-webapi' DEB package.
|
||||
2021-06-01 Fred Gleason <fredg@paravelsystems.com>
|
||||
* 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;
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
void RDCartDialog::loadFileData()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user