BUG#24533 (uninitialized null bits in m_after_image):

Removing valgrind memory checks from code.


sql/log_event.cc:
  Removing valgrind memory checks from code.
This commit is contained in:
unknown 2006-11-23 10:43:43 +01:00
parent 227e8e4ea3
commit 9fefd8eb71

View File

@ -7263,9 +7263,6 @@ int Update_rows_log_event::do_exec_row(TABLE *table)
bmove_align(table->record[0], m_after_image, table->s->reclength); bmove_align(table->record[0], m_after_image, table->s->reclength);
copy_extra_record_fields(table, m_master_reclength, m_width); copy_extra_record_fields(table, m_master_reclength, m_width);
valgrind_check_mem(table->record[0], table->s->reclength);
valgrind_check_mem(table->record[1], table->s->reclength);
/* /*
Now we have the right row to update. The old row (the one we're Now we have the right row to update. The old row (the one we're
looking for) is in record[1] and the new row has is in record[0]. looking for) is in record[1] and the new row has is in record[0].