~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mf_keycaches.c

  • Committer: Monty Taylor
  • Date: 2008-12-07 22:57:38 UTC
  • mto: This revision was merged to the branch mainline in revision 670.
  • Revision ID: monty@inaugust.com-20081207225738-y20u8hgd4m4uq60h
Removed my_malloc stuff from storage/

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
  }
211
211
  else
212
212
  {
213
 
    if (!(entry= (SAFE_HASH_ENTRY *) my_malloc(sizeof(*entry) + length,
214
 
                                               MYF(MY_WME))))
 
213
    if (!(entry= (SAFE_HASH_ENTRY *) malloc(sizeof(*entry) + length)))
215
214
    {
216
215
      error= 1;
217
216
      goto end;