mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Fix yet another place with an obsolete explicit cast to byte *.
This commit is contained in:
parent
3cf181bb64
commit
36fdaa7d16
1 changed files with 1 additions and 1 deletions
|
@ -935,7 +935,7 @@ public:
|
|||
uint name_length_arg, gptr data_arg)
|
||||
:name_length(name_length_arg), data(data_arg)
|
||||
{
|
||||
name= my_strdup_with_length((byte*) name_arg, name_length, MYF(MY_WME));
|
||||
name= my_strdup_with_length(name_arg, name_length, MYF(MY_WME));
|
||||
links->push_back(this);
|
||||
}
|
||||
inline bool cmp(const char *name_cmp, uint length)
|
||||
|
|
Loading…
Reference in a new issue