~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/item.h

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:
2468
2468
  {
2469
2469
    Item_cache::cleanup();
2470
2470
    if (save_array)
2471
 
      bzero(values, item_count*sizeof(Item**));
 
2471
      memset(values, 0, item_count*sizeof(Item**));
2472
2472
    else
2473
2473
      values= 0;
2474
2474
    return;