diff options
author | Alfranio Correia <alfranio.correia@sun.com> | 2009-10-22 11:18:28 +0100 |
---|---|---|
committer | Alfranio Correia <alfranio.correia@sun.com> | 2009-10-22 11:18:28 +0100 |
commit | 081c43ea64500357d4edc78168ece789223462aa (patch) | |
tree | 0b637e27f61790eeca074d3f717b26b18e9b3725 /sql/log.cc | |
parent | 77998869eefb3cc7b348ff376c31f7f83ae62dd9 (diff) | |
download | mariadb-git-081c43ea64500357d4edc78168ece789223462aa.tar.gz |
Post-fix for BUG#47287.
The label "end" was causing compiler warnings as it was no longer used.
To fix the problem we removed it.
Diffstat (limited to 'sql/log.cc')
-rw-r--r-- | sql/log.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/log.cc b/sql/log.cc index e1c3944392f..c087ac41a66 100644 --- a/sql/log.cc +++ b/sql/log.cc @@ -1549,7 +1549,6 @@ static int binlog_commit(handlerton *hton, THD *thd, bool all) trx_data->at_least_one_stmt_committed = my_b_tell(&trx_data->trans_log) > 0; -end: if (!all) trx_data->before_stmt_pos = MY_OFF_T_UNDEF; // part of the stmt commit DBUG_RETURN(error); |