diff options
author | heikki@hundin.mysql.fi <> | 2003-06-18 03:53:18 +0300 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2003-06-18 03:53:18 +0300 |
commit | b8cc47797a4d8ae8c129e372fe5bd0789f8b5441 (patch) | |
tree | 191b7364f1b869fa86e6b7e4a2db797e21014c60 /innobase | |
parent | 6d4fe0280fa66c635a9328267567e6307049433e (diff) | |
download | mariadb-git-b8cc47797a4d8ae8c129e372fe5bd0789f8b5441.tar.gz |
row0vers.c:
Add forgotten mutex_enter()
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/row/row0vers.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/innobase/row/row0vers.c b/innobase/row/row0vers.c index 1e9cef4c726..d4a463d8a96 100644 --- a/innobase/row/row0vers.c +++ b/innobase/row/row0vers.c @@ -88,6 +88,7 @@ row_vers_impl_x_locked_off_kernel( a rollback we always undo the modifications to secondary index records before the clustered index record. */ + mutex_enter(&kernel_mutex); mtr_commit(&mtr); return(NULL); |