~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_string.cc

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:
235
235
    If we add little-endian UCS-2 sometimes, this code
236
236
    will be more complicated. But it's OK for now.
237
237
  */
238
 
  bzero((char*) Ptr, offset);
 
238
  memset((char*) Ptr, 0, offset);
239
239
  memcpy(Ptr + offset, str, arg_length);
240
240
  Ptr[aligned_length]=0;
241
241
  /* str_length is always >= 0 as arg_length is != 0 */
955
955
          0x01 -> 0x0001
956
956
        */
957
957
        uint pad_length= to_cs->mbminlen - from_offset;
958
 
        bzero(to, pad_length);
 
958
        memset(to, 0, pad_length);
959
959
        memmove(to + pad_length, from, from_offset);
960
960
        nchars--;
961
961
        from+= from_offset;