On 12/24/2017 12:13 AM, Scott Kostyshak wrote:
> On Sun, Dec 24, 2017 at 04:35:26AM +0000, Richard Heck wrote:
>
>> Backtrace?
> Attached. Are you able to reproduce?

Looks like my hypothesis was correct. Try the attached.

I thought we didn't use clones when exporting from the command line. We
probably
shouldn't.

rh

diff --git a/src/support/Systemcall.cpp b/src/support/Systemcall.cpp
index 93166b5c46..fe8c23fb23 100644
--- a/src/support/Systemcall.cpp
+++ b/src/support/Systemcall.cpp
@@ -403,7 +403,7 @@ void SystemcallPrivate::startProcess(QString const & cmd, 
string const & path,
 bool SystemcallPrivate::waitAndCheck()
 {
        Sleep::millisec(100);
-       if (theApp()->cancel_export) {
+       if (theApp() && theApp()->cancel_export) {
                // is there a better place to reset this?
                process_->kill();
                state = Killed;

Reply via email to