Skip to content
Permalink
Browse files
Fix DBUG_ENTER/return mismatch
Spotted by Thirunarayanan Balathandayuthapani.
  • Loading branch information
dr-m committed Jul 25, 2022
1 parent 8aa37c2 commit f1c8749
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1092,7 +1092,7 @@ row_merge_read(
if (success && log_tmp_is_encrypted()) {
if (!log_tmp_block_decrypt(buf, srv_sort_buf_size,
crypt_buf, ofs)) {
return (FALSE);
DBUG_RETURN(false);
}

srv_stats.n_merge_blocks_decrypted.inc();
@@ -1141,7 +1141,7 @@ row_merge_write(
buf_len,
static_cast<byte*>(crypt_buf),
ofs)) {
return false;
DBUG_RETURN(false);
}

srv_stats.n_merge_blocks_encrypted.inc();

0 comments on commit f1c8749

Please sign in to comment.