diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-23 12:01:46 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-23 12:01:46 +0900 |
commit | 403dde950b4a7398c856d495ed2d66157b175bf1 (patch) | |
tree | 3406d7281fdb27f3cf15ca741a45fe6b332a54dd | |
parent | f31cf101872420a14995f2b24d21377a65adc9dd (diff) | |
download | libquotient-403dde950b4a7398c856d495ed2d66157b175bf1.tar.gz libquotient-403dde950b4a7398c856d495ed2d66157b175bf1.zip |
DownloadFileJob::beforeStart(): make sure to immediately return in case of error
-rw-r--r-- | jobs/downloadfilejob.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/jobs/downloadfilejob.cpp b/jobs/downloadfilejob.cpp index 07d14197..6a3d8483 100644 --- a/jobs/downloadfilejob.cpp +++ b/jobs/downloadfilejob.cpp @@ -54,6 +54,7 @@ void DownloadFileJob::beforeStart(const ConnectionData*) qCWarning(JOBS) << "Couldn't open the temporary file" << d->tempFile->fileName() << "for writing"; setStatus(FileError, "Could not open the temporary download file"); + return; } qCDebug(JOBS) << "Downloading to" << d->tempFile->fileName(); } |