~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/uniques.cc

  • Committer: Monty Taylor
  • Date: 2008-12-05 00:20:09 UTC
  • mto: This revision was merged to the branch mainline in revision 649.
  • Revision ID: monty@inaugust.com-20081205002009-jwrtjuqzl3seojlb
More removal of my_malloc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
614
614
 
615
615
      /* Open cached file if it isn't open */
616
616
  outfile=table->sort.io_cache=(IO_CACHE*) malloc(sizeof(IO_CACHE));
617
 
  memset(outfile, 0, siezof(IO_CACHE));
 
617
  memset(outfile, 0, sizeof(IO_CACHE));
618
618
 
619
619
  if (!outfile || (! my_b_inited(outfile) && open_cached_file(outfile,drizzle_tmpdir,TEMP_PREFIX,READ_RECORD_BUFFER, MYF(MY_WME))))
620
620
    return 1;