~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_create.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:
684
684
  pthread_mutex_unlock(&THR_LOCK_myisam);
685
685
  if (my_close(file,MYF(0)))
686
686
    goto err;
687
 
  my_free((char*) rec_per_key_part,MYF(0));
 
687
  free((char*) rec_per_key_part);
688
688
  return(0);
689
689
 
690
690
err:
708
708
                                       MY_UNPACK_FILENAME | MY_APPEND_EXT),
709
709
                             MYF(0));
710
710
  }
711
 
  my_free((char*) rec_per_key_part, MYF(0));
 
711
  free((char*) rec_per_key_part);
712
712
  return(my_errno=save_errno);          /* return the fatal errno */
713
713
}
714
714