sax/source/fastparser/fastparser.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit c3f19a505fe7bc89b0d22dad176a14f3f1e2d36b Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Sun Aug 10 19:11:23 2025 +0100 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Mon Aug 11 09:33:15 2025 +0200 cid#1660477 suppress Data race condition accept the comment's claim about the known lack of lock Change-Id: I0d2aab6db86ca4e6715136098fe4c7ee3e166666 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/189319 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index 0ab91838dcdf..489d1303f3ae 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -885,8 +885,8 @@ void FastSaxParserImpl::parseStream(const InputSource& rStructSource) deleteUsedEvents(); // callbacks used inside XML_Parse may have caught an exception - // No need to lock maSavedExceptionMutex here because parser - // thread is joined. + // coverity[missing_lock : SUPPRESS] 2024.6.1 - No need to lock + // maSavedExceptionMutex here because parser thread is joined. if( rEntity.maSavedException.hasValue() ) rEntity.throwException( mxDocumentLocator, true ); }