From 1d2ade4987bbf813f3fd37298725a7ebb1a91e49 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 16 Apr 2015 12:15:37 +0300 Subject: CID#1294411: dlhandle is "leaked" Change-Id: Ie8dafb4d5dfd2ab09d71bc509f91e5c2c483bfb8 --- include/LibreOfficeKit/LibreOfficeKitInit.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/LibreOfficeKit/LibreOfficeKitInit.h b/include/LibreOfficeKit/LibreOfficeKitInit.h index 4b06e8ddf7da..8730ef07ed8a 100644 --- a/include/LibreOfficeKit/LibreOfficeKitInit.h +++ b/include/LibreOfficeKit/LibreOfficeKitInit.h @@ -196,10 +196,14 @@ static LibreOfficeKit *lok_init_2( const char *install_path, const char *user_p return NULL; } free( imp_lib ); + // dlhandle is "leaked" + // coverity[leaked_storage] return pSym( install_path ); } free( imp_lib ); + // dlhandle is "leaked" + // coverity[leaked_storage] return pSym2( install_path, user_profile_path ); } -- cgit