~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_filter.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:
365
365
{
366
366
  TABLE_RULE_ENT *e= (TABLE_RULE_ENT *) a;
367
367
  
368
 
  my_free((uchar*) e, MYF(0));
 
368
  free((uchar*) e);
369
369
}
370
370
 
371
371
 
416
416
  {
417
417
    char* p;
418
418
    get_dynamic(a, (uchar*) &p, i);
419
 
    my_free(p, MYF(MY_WME));
 
419
    free(p);
420
420
  }
421
421
  delete_dynamic(a);
422
422
}