mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
parameter of my_yyoverflow made independed from YYSIZE_T (BUG#4204)
sql/sql_parse.cc: parameter of my_yyoverflow made independed from YYSIZE_T sql/sql_yacc.yy: parameter of my_yyoverflow made independed from YYSIZE_T
This commit is contained in:
@ -2330,10 +2330,10 @@ bool check_stack_overrun(THD *thd,char *buf __attribute__((unused)))
|
||||
#define MY_YACC_INIT 1000 // Start with big alloc
|
||||
#define MY_YACC_MAX 32000 // Because of 'short'
|
||||
|
||||
bool my_yyoverflow(short **yyss, YYSTYPE **yyvs, int *yystacksize)
|
||||
bool my_yyoverflow(short **yyss, YYSTYPE **yyvs, ulong *yystacksize)
|
||||
{
|
||||
LEX *lex=current_lex;
|
||||
int old_info=0;
|
||||
ulong old_info=0;
|
||||
if ((uint) *yystacksize >= MY_YACC_MAX)
|
||||
return 1;
|
||||
if (!lex->yacc_yyvs)
|
||||
|
Reference in New Issue
Block a user