~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_bitmap.cc

  • Committer: Brian Aker
  • Date: 2008-12-09 17:33:02 UTC
  • mfrom: (656.1.54 devel)
  • Revision ID: brian@tangent.org-20081209173302-aptngvc7efxnatnt
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
      extra= sizeof(pthread_mutex_t);
109
109
    }
110
110
    map->mutex= 0;
111
 
    if (!(buf= (my_bitmap_map*) my_malloc(size_in_bytes+extra, MYF(MY_WME))))
 
111
    if (!(buf= (my_bitmap_map*) malloc(size_in_bytes+extra)))
112
112
      return(1);
113
113
    if (thread_safe)
114
114
    {