diff options
author | unknown <acurtis/antony@xiphis.org/ltamd64.xiphis.org> | 2008-02-19 13:46:54 -0800 |
---|---|---|
committer | unknown <acurtis/antony@xiphis.org/ltamd64.xiphis.org> | 2008-02-19 13:46:54 -0800 |
commit | 40089da1db09fc58aa1c696809e91cf471d30948 (patch) | |
tree | b4c1b6b83eac45a53bc54569c2e3c89c88eb35b2 /mysql-test/valgrind.supp | |
parent | 53fe1435e65e19267a712c88f3027f65a942aeee (diff) | |
download | mariadb-git-40089da1db09fc58aa1c696809e91cf471d30948.tar.gz |
backport valgrind cleanups from 6.0-engines
mysql-test/valgrind.supp:
silence valgrind warning of memory leak in dlopen
strings/strmake.c:
silence valgrind warning cause by strlen examining unset bytes.
Diffstat (limited to 'mysql-test/valgrind.supp')
-rw-r--r-- | mysql-test/valgrind.supp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/valgrind.supp b/mysql-test/valgrind.supp index a4fb488a3d6..cb1b07c83b0 100644 --- a/mysql-test/valgrind.supp +++ b/mysql-test/valgrind.supp @@ -495,3 +495,16 @@ fun:_db_enter_ fun:kill_server } + +# +# Warning caused by small memory leak in threaded dlopen +# + +{ + dlopen threaded memory leak + Memcheck:Leak + fun:calloc + obj:*/libdl-*.so + fun:dlopen* +} + |