~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/field.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:
201
201
    return pack_length();
202
202
  };
203
203
 
204
 
  virtual int reset(void) { bzero(ptr,pack_length()); return 0; }
 
204
  virtual int reset(void) { memset(ptr, 0, pack_length()); return 0; }
205
205
  virtual void reset_fields() {}
206
206
  virtual void set_default()
207
207
  {