~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/repl_failsafe.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:
144
144
  return res;
145
145
 
146
146
err:
147
 
  my_free(si, MYF(MY_WME));
 
147
  free(si);
148
148
  my_message(ER_UNKNOWN_ERROR, errmsg, MYF(0)); /* purecov: inspected */
149
149
err2:
150
150
  return 1;
160
160
 
161
161
extern "C" void slave_info_free(void *s)
162
162
{
163
 
  my_free(s, MYF(MY_WME));
 
163
  free(s);
164
164
}
165
165
 
166
166
void init_slave_list()