From 35d020df86a0580c9bc115692690f6e5ea16c07c Mon Sep 17 00:00:00 2001 From: marko <> Date: Wed, 16 Jan 2008 09:45:22 +0000 Subject: [PATCH] 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. --- row/row0uins.c | 1 + 1 file changed, 1 insertion(+) diff --git a/row/row0uins.c b/row/row0uins.c index b53d3c48df7..1fff3ea6226 100644 --- a/row/row0uins.c +++ b/row/row0uins.c @@ -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. */