~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mulalloc.c

Removed/replaced DBUG symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  va_list args;
37
37
  char **ptr,*start,*res;
38
38
  size_t tot_length,length;
 
39
  DBUG_ENTER("my_multi_malloc");
39
40
 
40
41
  va_start(args,myFlags);
41
42
  tot_length=0;
47
48
  va_end(args);
48
49
 
49
50
  if (!(start=(char *) my_malloc(tot_length,myFlags)))
50
 
    return(0); /* purecov: inspected */
 
51
    DBUG_RETURN(0); /* purecov: inspected */
51
52
 
52
53
  va_start(args,myFlags);
53
54
  res=start;
58
59
    res+=ALIGN_SIZE(length);
59
60
  }
60
61
  va_end(args);
61
 
  return((void*) start);
 
62
  DBUG_RETURN((void*) start);
62
63
}