diff options
author | monty@mysql.com <> | 2006-06-06 02:47:30 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2006-06-06 02:47:30 +0300 |
commit | a703ff60c7d6fbc6fa1c3ef25167cbe85d852bf8 (patch) | |
tree | 95341607866eaeca795c9a1a4c4c0d94df862cfd /mysql-test/valgrind.supp | |
parent | 430347f12622b98d4e87bc2c33934335f410029b (diff) | |
download | mariadb-git-a703ff60c7d6fbc6fa1c3ef25167cbe85d852bf8.tar.gz |
Fixed some issues found by valgrind
(one testcase, one memory leak and some accesses to not initialized memory)
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 258e4d4a22b..9061a71364d 100644 --- a/mysql-test/valgrind.supp +++ b/mysql-test/valgrind.supp @@ -420,3 +420,16 @@ fun:fprintf fun:print_stacktrace } + +# +# Safe warnings, that may happen because of thread scheduling +# + +{ + dbug initialization + Memcheck:Leak + fun:malloc + fun:DbugMalloc + fun:ListAdd + fun:_db_set_ +} |