# # # patch "src/model/Select.cpp" # from [530e813a342d5a623f5318b8e7a75fd02443f491] # to [7d4f1170fdd0328c6740a523244e76a31e82d4f6] # ============================================================ --- src/model/Select.cpp 530e813a342d5a623f5318b8e7a75fd02443f491 +++ src/model/Select.cpp 7d4f1170fdd0328c6740a523244e76a31e82d4f6 @@ -54,6 +54,13 @@ void Select::processTaskResult(const Mon return; } + if (task.getReturnCode() != 0) + { + C(QString("Command returned with a non-zero return code (%1)") + .arg(task.getOutputUtf8())); + return; + } + delete selRevisions; selRevisions = new RevisionList( task.getOutputUtf8().split('\n', QString::SkipEmptyParts)