~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_page.c

Replacing all bzero() calls with memset() calls and removing the bzero.c file.
Also removing check for bzero from the 'configure.ac' autoconf file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
#ifdef HAVE_purify
77
77
  {
78
78
    length=mi_getint(buff);
79
 
    bzero((uchar*) buff+length,keyinfo->block_length-length);
 
79
    memset((uchar*) buff+length, 0, keyinfo->block_length-length);
80
80
    length=keyinfo->block_length;
81
81
  }
82
82
#endif