Skip to content
Snippets Groups Projects
Commit fc8762e6 authored by con's avatar con
Browse files

Fixes: - Crash in .pro file reader.

Details:  - Happened in release builds when opening pro files with
CONFIG scopes and a non-valid Qt version set.
parent f6db0ab3
No related branches found
No related tags found
No related merge requests found
......@@ -1666,7 +1666,7 @@ bool ProFileEvaluator::Private::evaluateConditionalFunction(const QString &funct
}
const QStringList mutuals = args[1].split(QLatin1Char('|'));
const QStringList &configs = valuesDirect(QLatin1String("CONFIG"));
for (int i = configs.size() - 1 && ok; i >= 0; i--) {
for (int i = configs.size() - 1; i >= 0; i--) {
for (int mut = 0; mut < mutuals.count(); mut++) {
if (configs[i] == mutuals[mut].trimmed()) {
cond = (configs[i] == args[0]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment