~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_iocache.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:
251
251
  else
252
252
  {
253
253
    /* Clear mutex so that safe_mutex will notice that it's not initialized */
254
 
    bzero((char*) &info->append_buffer_lock, sizeof(info));
 
254
    memset((char*) &info->append_buffer_lock, 0, sizeof(info));
255
255
  }
256
256
#endif
257
257