mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 07:35:32 +02:00
(row0umod.c:117) Bug#55227 Fix compiler warnings in innodb with gcc 4.6
This commit is contained in:
parent
17cc7b76be
commit
d4a2abcd2f
1 changed files with 6 additions and 1 deletions
|
|
@ -114,12 +114,17 @@ row_undo_mod_clust_low(
|
|||
btr_pcur_t* pcur;
|
||||
btr_cur_t* btr_cur;
|
||||
ulint err;
|
||||
#ifdef UNIV_DEBUG
|
||||
ibool success;
|
||||
#endif /* UNIV_DEBUG */
|
||||
|
||||
pcur = &(node->pcur);
|
||||
btr_cur = btr_pcur_get_btr_cur(pcur);
|
||||
|
||||
success = btr_pcur_restore_position(mode, pcur, mtr);
|
||||
#ifdef UNIV_DEBUG
|
||||
success =
|
||||
#endif /* UNIV_DEBUG */
|
||||
btr_pcur_restore_position(mode, pcur, mtr);
|
||||
|
||||
ut_ad(success);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue