Task #1423 - kf5-sonnet-5.115.0-1.fc40/scan-results.err

back to task #1423
download
Error: CLANG_WARNING:
kf5-sonnet-5.115.0-build/sonnet-5.115.0/autotests/test_settings.cpp:42:5: warning[cplusplus.NewDeleteLeaks]: Potential leak of memory pointed to by 'speller'
#   40|       // NOTE: This test works on Unix, but should _not_ fail on Windows as
#   41|       // QFileInfo::lastModified() always returns invalid QDateTime
#   42|->     QCOMPARE(QFileInfo(fileName).lastModified(), startTime);
#   43|   
#   44|       speller->language();

Error: COMPILER_WARNING:
kf5-sonnet-5.115.0-build/sonnet-5.115.0/src/core/tokenizer.cpp: scope_hint: In member function ‘Sonnet::Token Sonnet::BreakTokenizerPrivate::next()’
kf5-sonnet-5.115.0-build/sonnet-5.115.0/src/core/tokenizer.cpp:130:33: warning[-Wdangling-reference]: possibly dangling reference to a temporary
#  130 |     const TextBreaks::Position &textBreak = this->breaks().at(itemPosition);
#      |                                 ^~~~~~~~~
kf5-sonnet-5.115.0-build/sonnet-5.115.0/src/core/tokenizer.cpp:130:62: note: the temporary was destroyed at the end of the full expression ‘Sonnet::BreakTokenizerPrivate::breaks() const().QList<Sonnet::TextBreaks::Position>::at(((Sonnet::BreakTokenizerPrivate*)this)->Sonnet::BreakTokenizerPrivate::itemPosition)’
#  130 |     const TextBreaks::Position &textBreak = this->breaks().at(itemPosition);
#      |                                             ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~
#  128|       itemPosition++;
#  129|   
#  130|->     const TextBreaks::Position &textBreak = this->breaks().at(itemPosition);
#  131|       QStringView token = QStringView(buffer).mid(textBreak.start, textBreak.length);
#  132|       last = {token, textBreak.start};