Fix uninitialized variable warnings from static analysis

* Reported by Coverity Scan
This commit is contained in:
baldurk
2017-11-22 11:31:07 +00:00
parent 05d7ae9fec
commit c860d8baa3
43 changed files with 190 additions and 138 deletions
@@ -65,7 +65,11 @@ struct SortValue
else
val.u = result.value.u32;
default: break;
default:
qCritical() << "Unexpected component type" << ToQStr(description.resultType);
type = Float;
val.d = -1.0;
break;
}
}
};