diff options
author | unknown <knielsen@mysql.com> | 2006-06-15 22:02:26 +0200 |
---|---|---|
committer | unknown <knielsen@mysql.com> | 2006-06-15 22:02:26 +0200 |
commit | 41b3852469e6342e1e60653944592d1aaf21e0b0 (patch) | |
tree | f3573e63d223a72803ec281d9232c9cb8204023a /mysql-test/valgrind.supp | |
parent | 8f58a1f7a1726443edb3d2433c089f6612fa2fc4 (diff) | |
download | mariadb-git-41b3852469e6342e1e60653944592d1aaf21e0b0.tar.gz |
BUG#19940: Add Valgrind suppression for false alarm report.
Diffstat (limited to 'mysql-test/valgrind.supp')
-rw-r--r-- | mysql-test/valgrind.supp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/valgrind.supp b/mysql-test/valgrind.supp index 3c2ac1a7ea5..65c5a82db36 100644 --- a/mysql-test/valgrind.supp +++ b/mysql-test/valgrind.supp @@ -292,3 +292,18 @@ futex(utime) fun:__lll_mutex_unlock_wake } + +# +# BUG#19940: NDB sends uninitialized parts of field buffers across the wire. +# This is "works as designed"; the uninitialized part is not used at the +# other end (but Valgrind cannot see this). +# +{ + bug19940 + Memcheck:Param + socketcall.sendto(msg) + fun:send + fun:_ZN15TCP_Transporter6doSendEv + fun:_ZN19TransporterRegistry11performSendEv + fun:_ZN19TransporterRegistry14forceSendCheckEi +} |