sax/source/fastparser/fastparser.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 3d1651574e269e57233f119b2507e4169b79fdad Author: Caolán McNamara <[email protected]> AuthorDate: Tue Aug 12 10:47:33 2025 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Tue Aug 12 16:23:24 2025 +0200 move markup to directly above line it refers to Change-Id: Ie78ca5392428bfb09a6a03bf415b1ef12bb5cc01 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/189413 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index 489d1303f3ae..744458972554 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -884,9 +884,9 @@ void FastSaxParserImpl::parseStream(const InputSource& rStructSource) aEnsureFree.joinThread(); deleteUsedEvents(); - // callbacks used inside XML_Parse may have caught an exception - // coverity[missing_lock : SUPPRESS] 2024.6.1 - No need to lock - // maSavedExceptionMutex here because parser thread is joined. + // 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 if( rEntity.maSavedException.hasValue() ) rEntity.throwException( mxDocumentLocator, true ); }
