~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/tests/testhash.c

  • Committer: Brian Aker
  • Date: 2008-07-29 07:47:38 UTC
  • mfrom: (212.6.1 bzero-memset)
  • Revision ID: brian@tangent.org-20080729074738-lfzim6htapm42f2o
MergeĀ fromĀ Mats

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
 
63
63
  write_count=update=delete=0;
64
64
  key_check=0;
65
 
  bzero((char*) key1,sizeof(key1[0])*1000);
 
65
  memset((char*) key1, 0, sizeof(key1[0])*1000);
66
66
 
67
67
  printf("- Creating hash\n");
68
68
  if (hash_init(&hash, default_charset_info, recant/2, 0, 6, 0, free_record, 0))