~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/handler/ha_innodb.cc

  • 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:
2730
2730
        simple memcmp to compare two key values to determine if they are
2731
2731
        equal. MySQL does this to compare contents of two 'ref' values. */
2732
2732
 
2733
 
        bzero(buff, buff_len);
 
2733
        memset(buff, 0, buff_len);
2734
2734
 
2735
2735
        for (; key_part != end; key_part++) {
2736
2736
                is_null = FALSE;
2809
2809
                        length of the true VARCHAR in the key value, though
2810
2810
                        only len first bytes after the 2 length bytes contain
2811
2811
                        actual data. The rest of the space was reset to zero
2812
 
                        in the bzero() call above. */
 
2812
                        in the memset() call above. */
2813
2813
 
2814
2814
                        buff += key_len;
2815
2815