Fixed valgrind error, caused by incorrect pointer arithetic

sql/sql_yacc.yy:
  Fixed valgrind error: the same buffer (preprocessed) should be used when extracting the text of expr
This commit is contained in:
unknown 2007-06-13 07:31:41 -06:00
parent f09496c8c2
commit 4b435ac7c7

View File

@ -8006,16 +8006,14 @@ procedure_list2:
| procedure_item;
procedure_item:
remember_name expr
remember_name expr remember_end
{
THD *thd= YYTHD;
Lex_input_stream *lip= thd->m_lip;
if (add_proc_to_list(thd, $2))
MYSQL_YYABORT;
if (!$2->name)
$2->set_name($1,(uint) ((char*) lip->get_tok_end() - $1),
thd->charset());
$2->set_name($1, (uint) ($3 - $1), thd->charset());
}
;