~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_file.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:
118
118
    /* Copy data back for my_print_open_files */
119
119
    memcpy(my_file_info_default, my_file_info,
120
120
           sizeof(*my_file_info_default)* MY_NFILE);
121
 
    my_free((char*) my_file_info, MYF(0));
 
121
    free((char*) my_file_info);
122
122
    my_file_info= my_file_info_default;
123
123
    my_file_limit= MY_NFILE;
124
124
  }