~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_alloc.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:
163
163
    {
164
164
      if (mem_root->error_handler)
165
165
        (*mem_root->error_handler)();
166
 
      return((void*) 0);                      /* purecov: inspected */
 
166
      return((void*) 0);
167
167
    }
168
168
    mem_root->block_num++;
169
169
    next->next= *prev;
220
220
  va_end(args);
221
221
 
222
222
  if (!(start= (char*) alloc_root(root, tot_length)))
223
 
    return(0);                            /* purecov: inspected */
 
223
    return(0);
224
224
 
225
225
  va_start(args, root);
226
226
  res= start;