~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mulalloc.cc

Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
  va_end(args);
50
50
 
51
51
  if (!(start=(char *) malloc(tot_length)))
52
 
    return(0); /* purecov: inspected */
 
52
    return(0);
53
53
  if (myFlags & MY_ZEROFILL)
54
54
    memset(start, 0, tot_length);
55
55