You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
m_charset_codec is uninitalized when calling m_make_unpack_info_func.
In the cases where m_make_unpack_info_func is one of:
* Rdb_key_def::make_unpack_unknown_varchar
* Rdb_key_def::make_unpack_unknown
* Rdb_key_def::dummy_make_unpack_info
the m_charset_coded that forms the first argument to this function
is unused.
In these limited cases we initialize the m_charset_codec member
as the only use is to pass though to the m_make_unpack_info_func
Ultimately MemorySanitizer shouldn't error on this as all
of these 3 functions clearly have the attribute
__unused__ on their first argument where the m_charset_coded is
passed.
0 commit comments