Commit 9fefd8eb authored by unknown's avatar unknown

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.
parent 227e8e4e
...@@ -7263,9 +7263,6 @@ int Update_rows_log_event::do_exec_row(TABLE *table) ...@@ -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].
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment