diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-08-22 09:43:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-08-22 12:17:44 +0200 |
commit | ce891da19769f2c80e8f7517f85d67d2de5ba34e (patch) | |
tree | 83123e339baf97b7f990a046c3954bffdeda6243 /bridges | |
parent | bc209dd6689816c2c1fa93c1bab289465b7419a8 (diff) |
cid#1500470 silence Resource leak
Change-Id: I846746a351c619a4de7abce7a6443f510dc41690
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138661
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx b/bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx index dad1ad8f7ac6..189b3c2a4ef9 100644 --- a/bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx +++ b/bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx @@ -74,6 +74,7 @@ com::sun::star::uno::XInterface * CppInterfaceProxy::create( pProxy->vtables[i] = VtableFactory::mapBlockToVtable( rVtables.blocks[i].start); } + // coverity[leaked_storage : FALSE] - see freeCppInterfaceProxy return castProxyToInterface(pProxy); } |