mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-19566 Remove Item::name related strlen() calls in constructors of some Item_string descendands
This commit is contained in:
@@ -53,6 +53,11 @@ class Lex_cstring : public LEX_CSTRING
|
||||
str= NULL;
|
||||
length= 0;
|
||||
}
|
||||
Lex_cstring(const char *_str)
|
||||
{
|
||||
str= _str;
|
||||
length= strlen(_str);
|
||||
}
|
||||
Lex_cstring(const char *_str, size_t _len)
|
||||
{
|
||||
str= _str;
|
||||
|
Reference in New Issue
Block a user