diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2014-12-04 21:12:45 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2014-12-07 21:53:54 +0100 |
commit | 6d6f41d688e32b4530744e06de221dfc4f019042 (patch) | |
tree | 30ee69834fd53ab06c96471a2dccf4f0ea74be0b /contrib | |
parent | 759c6e627f8b4597c8378b66dba723c74045d3cf (diff) | |
download | sssd-6d6f41d688e32b4530744e06de221dfc4f019042.tar.gz sssd-6d6f41d688e32b4530744e06de221dfc4f019042.tar.xz sssd-6d6f41d688e32b4530744e06de221dfc4f019042.zip |
CI: Suppress memory errors from poptGetNextOpt
Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ci/sssd.supp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/contrib/ci/sssd.supp b/contrib/ci/sssd.supp index 5bd8c8d69..b9d13cdd6 100644 --- a/contrib/ci/sssd.supp +++ b/contrib/ci/sssd.supp @@ -122,3 +122,32 @@ fun:exit fun:(below main) } + +# long-standing memory leak in popt +{ + popt-memleak-from-poptGetNextOpt-malloc + Memcheck:Leak + fun:malloc + ... + fun:poptGetNextOpt + fun:main +} + +# long-standing memory leak in popt +{ + popt-memleak-from-poptGetNextOpt-realloc + Memcheck:Leak + fun:realloc + ... + fun:poptGetNextOpt + fun:main +} + +# popt was not good with read access either. Applies for popt <= 1.13 +{ + popt-suppress-invalid-read + Memcheck:Addr4 + ... + fun:poptGetNextOpt + fun:main +} |