~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mulalloc.cc

  • Committer: Eric Day
  • Date: 2009-08-31 23:50:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1134.
  • Revision ID: eday@oddments.org-20090831235037-hwwe6zhq94o4lxtd
Removed purecov messages.

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