diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-07-26 11:23:13 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-07-26 22:04:32 +0200 |
commit | 1d457f960b3bb8efe8132b87babba7db4b58813e (patch) | |
tree | bb8d2cea272dfd7e7194df8a7c5d274bb45619d8 /pyuno/source/module | |
parent | 1d023f5bba0bd29a94bb252009e5e217849239f8 (diff) |
Related: rhbz#1602589 silence coverity leaked_storage
Change-Id: Iae694be40b32cc3821d326bb362e6091dba19a35
Reviewed-on: https://gerrit.libreoffice.org/58079
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'pyuno/source/module')
-rw-r--r-- | pyuno/source/module/pyuno_dlopenwrapper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyuno/source/module/pyuno_dlopenwrapper.c b/pyuno/source/module/pyuno_dlopenwrapper.c index 5654cb0f8f0a..44e711653e35 100644 --- a/pyuno/source/module/pyuno_dlopenwrapper.c +++ b/pyuno/source/module/pyuno_dlopenwrapper.c @@ -72,6 +72,7 @@ static void * load(void const * address, char const * symbol) { dlclose(h); abort(); } + // coverity[leaked_storage] - this is on purpose return func; } |