Task #1915 - qt6-qtsvg-6.6.2-1.fc40/scan-results.err

back to task #1915
download
Error: CLANG_WARNING:
qt6-qtsvg-6.6.2-build/qtsvg-everywhere-src-6.6.2/src/svg/qsvghandler.cpp:2447:42: warning[deadcode.DeadStores]: Although the value stored to 's' is used in the enclosing expression, the value is never actually read from 's'
# 2445|                   vals.append(0.0);
# 2446|                   vals.append(0.0);
# 2447|->                 parseNumberTriplet(vals, s = byStr.constData());
# 2448|               } else {
# 2449|                   // To-animation not defined.

Error: CLANG_WARNING:
qt6-qtsvg-6.6.2-build/qtsvg-everywhere-src-6.6.2/src/svg/qsvghandler.cpp:2455:42: warning[deadcode.DeadStores]: Although the value stored to 's' is used in the enclosing expression, the value is never actually read from 's'
# 2453|               if (!toStr.isEmpty()) {
# 2454|                   // From-to-animation.
# 2455|->                 parseNumberTriplet(vals, s = fromStr.constData());
# 2456|                   parseNumberTriplet(vals, s = toStr.constData());
# 2457|               } else if (!byStr.isEmpty()) {

Error: CLANG_WARNING:
qt6-qtsvg-6.6.2-build/qtsvg-everywhere-src-6.6.2/src/svg/qsvghandler.cpp:2456:42: warning[deadcode.DeadStores]: Although the value stored to 's' is used in the enclosing expression, the value is never actually read from 's'
# 2454|                   // From-to-animation.
# 2455|                   parseNumberTriplet(vals, s = fromStr.constData());
# 2456|->                 parseNumberTriplet(vals, s = toStr.constData());
# 2457|               } else if (!byStr.isEmpty()) {
# 2458|                   // From-by-animation.

Error: CLANG_WARNING:
qt6-qtsvg-6.6.2-build/qtsvg-everywhere-src-6.6.2/src/svg/qsvghandler.cpp:2459:42: warning[deadcode.DeadStores]: Although the value stored to 's' is used in the enclosing expression, the value is never actually read from 's'
# 2457|               } else if (!byStr.isEmpty()) {
# 2458|                   // From-by-animation.
# 2459|->                 parseNumberTriplet(vals, s = fromStr.constData());
# 2460|                   parseNumberTriplet(vals, s = byStr.constData());
# 2461|                   for (int i = vals.size() - 3; i < vals.size(); ++i)

Error: CLANG_WARNING:
qt6-qtsvg-6.6.2-build/qtsvg-everywhere-src-6.6.2/src/svg/qsvghandler.cpp:2460:42: warning[deadcode.DeadStores]: Although the value stored to 's' is used in the enclosing expression, the value is never actually read from 's'
# 2458|                   // From-by-animation.
# 2459|                   parseNumberTriplet(vals, s = fromStr.constData());
# 2460|->                 parseNumberTriplet(vals, s = byStr.constData());
# 2461|                   for (int i = vals.size() - 3; i < vals.size(); ++i)
# 2462|                       vals[i] += vals[i - 3];

Error: CLANG_WARNING:
qt6-qtsvg-6.6.2-build/qtsvg-everywhere-src-6.6.2/src/svg/qsvgtinydocument.cpp:349:5: warning[cplusplus.NewDelete]: Use of memory after it is freed
#  347|   QSvgFont * QSvgTinyDocument::svgFont(const QString &family) const
#  348|   {
#  349|->     return m_fonts[family];
#  350|   }
#  351|   

Error: CLANG_WARNING:
qt6-qtsvg-6.6.2-build/qtsvg-everywhere-src-6.6.2/src/svg/qsvgtinydocument.cpp:372:5: warning[cplusplus.NewDelete]: Use of memory after it is freed
#  370|   QSvgFillStyleProperty *QSvgTinyDocument::namedStyle(const QString &id) const
#  371|   {
#  372|->     return m_namedStyles.value(id);
#  373|   }
#  374|