diff options
author | Lewis Rockliffe <r0kk3rz@gmail.com> | 2018-03-18 13:08:28 +0000 |
---|---|---|
committer | Lewis Rockliffe <r0kk3rz@gmail.com> | 2018-03-19 09:49:15 +0100 |
commit | 17d3333a8952e3bd2491080081d00a251157e34a (patch) | |
tree | ec4b2c12e27269c9cc30806e0bf5aab9649efa91 | |
parent | 551935c24f66b7db4c6845c8a92cecc980fe3834 (diff) | |
download | libquotient-17d3333a8952e3bd2491080081d00a251157e34a.tar.gz libquotient-17d3333a8952e3bd2491080081d00a251157e34a.zip |
fix error handling in loadState()
-rw-r--r-- | connection.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/connection.cpp b/connection.cpp index 7ba11145..b3f1ceb8 100644 --- a/connection.cpp +++ b/connection.cpp @@ -719,15 +719,18 @@ void Connection::loadState(const QUrl &fromFile) qCDebug(MAIN) << "No state cache file found"; return; } - file.open(QFile::ReadOnly); + if(!file.open(QFile::ReadOnly)) + { + qCWarning(MAIN) << "file " << file.fileName() << "failed to open for read"; + return; + } QByteArray data = file.readAll(); - QJsonParseError e; auto jsonDoc = d->cacheToBinary ? QJsonDocument::fromBinaryData(data) : - QJsonDocument::fromJson(data, &e); - if (e.error != QJsonParseError::NoError) + QJsonDocument::fromJson(data); + if (jsonDoc.isNull()) { - qCWarning(MAIN) << "Cache file not found or broken, discarding"; + qCWarning(MAIN) << "Cache file broken, discarding"; return; } auto actualCacheVersionMajor = |