~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_list.h

  • Committer: Brian Aker
  • Date: 2008-11-13 02:56:15 UTC
  • mfrom: (575.4.10 devel)
  • Revision ID: brian@tangent.org-20081113025615-snhsi52yb2ivmx6f
Merging Monty's code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
459
459
  struct ilink **prev,*next;
460
460
  static void *operator new(size_t size)
461
461
  {
462
 
    return (void*)my_malloc((uint)size, MYF(MY_WME | MY_FAE | ME_FATALERROR));
 
462
    return (void*)malloc((uint)size);
463
463
  }
464
464
  static void operator delete(void* ptr_arg,
465
465
                              size_t size __attribute__((unused)))