~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_preload.c

  • 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:
111
111
  }
112
112
  while (pos != key_file_length);
113
113
 
114
 
  my_free((char*) buff, MYF(0));
 
114
  free((char*) buff);
115
115
  return(0);
116
116
 
117
117
err:
118
 
  my_free((char*) buff, MYF(MY_ALLOW_ZERO_PTR));
 
118
  free((char*) buff);
119
119
  return(my_errno= errno);
120
120
}
121
121