Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.9.0
-
-
39391e528 (dev), f68994586 (6.9), d94d58739 (6.8), 99ebdcf5f (dev), 713a2c23c (6.9), e4d59f9ec (6.8)
Description
qttools/src/designer/src/components/propertyeditor/designerpropertymanager.cpp
has multiple occurrences of code like:
QtProperty *alignV = m_propertyToAlignV.value(property);
if (alignV) {
delete alignV;
m_alignVToProperty.remove(alignV);
}
which triggers a coverity warning about use after free (sort-of semi-false positive).