diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-08-27 10:49:40 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-08-27 13:13:29 +0200 |
commit | 341d1462c23214a63293f62c6d5d42a27fd8e6fc (patch) | |
tree | 60786ec2ae9740c41fc5a1dfa9558addd22da328 /binaryurp | |
parent | b9cf72d76014854753f5c609208f0784a60dbd45 (diff) |
cid#1500596 silence Resource leak
Change-Id: I4600c9cd0f7fdea698750ca416fc7f46dcebf23c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138928
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'binaryurp')
-rw-r--r-- | binaryurp/source/reader.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryurp/source/reader.cxx b/binaryurp/source/reader.cxx index 5f8518742147..393d8312e43a 100644 --- a/binaryurp/source/reader.cxx +++ b/binaryurp/source/reader.cxx @@ -447,6 +447,7 @@ void Reader::readReplyMessage(Unmarshal & unmarshal, sal_uInt8 flags1) { uno_threadpool_putJob( bridge_->getThreadPool(), tid.getHandle(), resp.get(), nullptr, false); + // coverity[leaked_storage] - "Bridge::makeCall" destroys resp when received resp.release(); break; } |