~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/completion_hash.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:
206
206
void completion_hash_clean(HashTable *ht)
207
207
{
208
208
  free_root(&ht->mem_root,MYF(0));
209
 
  bzero((char*) ht->arBuckets,ht->nTableSize*sizeof(Bucket *));
 
209
  memset((char*) ht->arBuckets, 0, ht->nTableSize*sizeof(Bucket *));
210
210
}
211
211
 
212
212