diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKitInit.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 ); } |