Fix bug #7155 - valgrind Conditional jump or move depends on uninitialised value...
commit80d9663b3635ed7b2e9b3308d27aed08cd1f38fb
authorJeremy Allison <jra@samba.org>
Thu, 18 Feb 2010 20:21:10 +0000 (18 12:21 -0800)
committerKarolin Seeger <kseeger@samba.org>
Fri, 19 Feb 2010 08:20:54 +0000 (19 09:20 +0100)
treeef6182d572c4f416a25e73332d12c626b0756ed7
parent20b6d0406f0f72895f99636beee7a370195147fd
Fix bug #7155 - valgrind Conditional jump or move depends on uninitialised value(s) error when "mangling method = hash"

The charset array allocated in init_chartest() is allocated
by MALLOC, but only some elements of it being set after allocation. Fix is to
memset to zero after allocation.

Jeremy.
(cherry picked from commit a4e8210ba7d6d471cb9f17754244393b9c1e5930)
source/smbd/mangle_hash.c