~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/memory/multi_malloc.cc

Tiny cast and remove dead call cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
    memset(start, 0, tot_length);
67
67
 
68
68
  va_start(args, zerofill);
69
 
  res=reinterpret_cast<char *>(start);
 
69
  res= static_cast<char *>(start);
70
70
  while ((ptr=va_arg(args, void **)))
71
71
  {
72
72
    *ptr=res;