~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/handler/ha_innodb.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:
2739
2739
        simple memcmp to compare two key values to determine if they are
2740
2740
        equal. MySQL does this to compare contents of two 'ref' values. */
2741
2741
 
2742
 
        bzero(buff, buff_len);
 
2742
        memset(buff, 0, buff_len);
2743
2743
 
2744
2744
        for (; key_part != end; key_part++) {
2745
2745
                is_null = FALSE;
2818
2818
                        length of the true VARCHAR in the key value, though
2819
2819
                        only len first bytes after the 2 length bytes contain
2820
2820
                        actual data. The rest of the space was reset to zero
2821
 
                        in the bzero() call above. */
 
2821
                        in the memset() call above. */
2822
2822
 
2823
2823
                        buff += key_len;
2824
2824