branches/zip: row_undo_ins_parse_undo_rec(): Initialize node->update

so that it will not be uninitialized when the undo record is being
processed.
This commit is contained in:
marko 2008-01-16 09:45:22 +00:00
parent 40e01b2f5a
commit 35d020df86

View file

@ -235,6 +235,7 @@ row_undo_ins_parse_undo_rec(
ut_ad(type == TRX_UNDO_INSERT_REC);
node->rec_type = type;
node->update = NULL;
node->table = dict_table_get_on_id(table_id, node->trx);
/* Skip the UNDO if we can't find the table or the .ibd file. */