~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_rli.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:
1093
1093
    tables_to_lock=
1094
1094
      static_cast<RPL_TableList*>(tables_to_lock->next_global);
1095
1095
    tables_to_lock_count--;
1096
 
    my_free(to_free, MYF(MY_WME));
 
1096
    free(to_free);
1097
1097
  }
1098
1098
  assert(tables_to_lock == NULL && tables_to_lock_count == 0);
1099
1099
}