~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.cc

  • Committer: Monty Taylor
  • Date: 2008-10-06 01:30:47 UTC
  • Revision ID: monty@inaugust.com-20081006013047-6m2ejc0c4peye2k9
Removed my_free(). It turns out that it had been def'd to ignore the flags passed to it in the second arg anyway. Gotta love that.

Show diffs side-by-side

added added

removed removed

Lines of Context:
360
360
{
361
361
  if (lex->yacc_yyss)
362
362
  {
363
 
    my_free(lex->yacc_yyss, MYF(0));
364
 
    my_free(lex->yacc_yyvs, MYF(0));
 
363
    free(lex->yacc_yyss);
 
364
    free(lex->yacc_yyvs);
365
365
    lex->yacc_yyss= 0;
366
366
    lex->yacc_yyvs= 0;
367
367
  }