diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2019-10-30 07:31:39 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2019-10-30 07:31:39 +0200 |
commit | 0ccfdc8eff6371941d07c61c273784cbc350c87e (patch) | |
tree | eec9ea2d5b702035e8817072b67bb4f991dd699c /storage/innobase/pars/lexyy.cc | |
parent | 7440e61a64489a7eba9d0384366ab7aad99efe30 (diff) | |
download | mariadb-git-0ccfdc8eff6371941d07c61c273784cbc350c87e.tar.gz |
Remove InnoDB wrappers of <string.h> functions
ut_strcmp(), ut_strcpy(), ut_strlen(), ut_memcpy(), ut_memcmp(),
ut_memmove(): Remove. Invoke the standard library functions directly.
Diffstat (limited to 'storage/innobase/pars/lexyy.cc')
-rw-r--r-- | storage/innobase/pars/lexyy.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/pars/lexyy.cc b/storage/innobase/pars/lexyy.cc index 16e7e47069e..0054e1c34d0 100644 --- a/storage/innobase/pars/lexyy.cc +++ b/storage/innobase/pars/lexyy.cc @@ -1977,7 +1977,7 @@ YY_RULE_SETUP { yylval = sym_tab_add_id(pars_sym_tab_global, (byte*) yytext, - ut_strlen(yytext)); + strlen(yytext)); return(PARS_ID_TOKEN); } YY_BREAK @@ -1987,7 +1987,7 @@ YY_RULE_SETUP { yylval = sym_tab_add_id(pars_sym_tab_global, (byte*) yytext, - ut_strlen(yytext)); + strlen(yytext)); return(PARS_TABLE_NAME_TOKEN); } YY_BREAK |