~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_sort.cc

merge with the latest code from the trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
  unsigned char **ptr= NULL;
25
25
 
26
26
  if (size <= 20 && items >= 1000 && items < 100000 &&
27
 
      (ptr= (unsigned char**) my_malloc(items*sizeof(char*),MYF(0))))
 
27
      (ptr= (unsigned char**) malloc(items*sizeof(char*))))
28
28
  {
29
29
    radixsort_for_str_ptr((unsigned char**) base,items,size,ptr);
30
30
    free((unsigned char*) ptr);