~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_load.cc

  • 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:
874
874
                      (is_fifo ? READ_FIFO : READ_CACHE),0L,1,
875
875
                      MYF(MY_WME)))
876
876
    {
877
 
      my_free((uchar*) buffer,MYF(0)); /* purecov: inspected */
 
877
      free((uchar*) buffer); /* purecov: inspected */
878
878
      error=1;
879
879
    }
880
880
    else
903
903
  {
904
904
    if (need_end_io_cache)
905
905
      ::end_io_cache(&cache);
906
 
    my_free((uchar*) buffer,MYF(0));
 
906
    free((uchar*) buffer);
907
907
    error=1;
908
908
  }
909
909
}