binaryurp/source/reader.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit ea892cc0ea96f94c5a51227b897694f18b2b785b
Author:     Caolán McNamara <[email protected]>
AuthorDate: Sat Aug 27 10:39:26 2022 +0100
Commit:     Caolán McNamara <[email protected]>
CommitDate: Sat Aug 27 12:47:58 2022 +0200

    cid#1500523 silence Resource leak
    
    Change-Id: I9c2d026cb71615ac3121f47e47a6b0b163e820f5
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138925
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <[email protected]>

diff --git a/binaryurp/source/reader.cxx b/binaryurp/source/reader.cxx
index cbd18f1d8252..5f8518742147 100644
--- a/binaryurp/source/reader.cxx
+++ b/binaryurp/source/reader.cxx
@@ -338,6 +338,7 @@ void Reader::readMessage(Unmarshal & unmarshal) {
         uno_threadpool_putJob(
             bridge_->getThreadPool(), tid.getHandle(), req.get(), &request,
             !synchronous);
+        // coverity[leaked_storage] - "request" destroys req when executed
         req.release();
     }
 }

Reply via email to