summaryrefslogtreecommitdiff
path: root/storage/innobase/rem/rem0rec.cc
diff options
context:
space:
mode:
authorMichael Widenius <monty@mariadb.org>2018-04-11 02:20:22 +0300
committerMichael Widenius <monty@mariadb.org>2018-04-16 20:16:43 +0300
commitddc5764303dd72f68d2c69cc574a6f42e8bcf86d (patch)
treece22119346b027d359a909f7e272330dabd4c19b /storage/innobase/rem/rem0rec.cc
parentdbbe70e1cfe9d7635d9dba774a2c9dc61163b542 (diff)
downloadmariadb-git-ddc5764303dd72f68d2c69cc574a6f42e8bcf86d.tar.gz
Remove compiler warnings
- Remove unused variables - Mark variables unused - Fix wrong types - Add no-strict-aliasing to BUILD scripts
Diffstat (limited to 'storage/innobase/rem/rem0rec.cc')
-rw-r--r--storage/innobase/rem/rem0rec.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/storage/innobase/rem/rem0rec.cc b/storage/innobase/rem/rem0rec.cc
index dcc435c091f..3c7292ef1ca 100644
--- a/storage/innobase/rem/rem0rec.cc
+++ b/storage/innobase/rem/rem0rec.cc
@@ -322,7 +322,7 @@ rec_init_offsets_comp_ordinary(
|| dict_table_is_comp(index->table));
ut_ad(format != REC_LEAF_TEMP_COLUMNS_ADDED
|| index->n_fields == rec_offs_n_fields(offsets));
- ut_d(ulint n_null);
+ ut_d(ulint n_null= 0);
switch (format) {
case REC_LEAF_TEMP:
@@ -1447,10 +1447,10 @@ rec_convert_dtuple_to_rec_comp(
byte* end;
byte* nulls = temp
? rec - 1 : rec - (REC_N_NEW_EXTRA_BYTES + 1);
- byte* lens;
+ byte* UNINIT_VAR(lens);
ulint len;
ulint i;
- ulint n_node_ptr_field;
+ ulint UNINIT_VAR(n_node_ptr_field);
ulint fixed_len;
ulint null_mask = 1;
@@ -1835,7 +1835,7 @@ rec_copy_prefix_to_buf(
ulint* buf_size) /*!< in/out: buffer size */
{
const byte* nulls;
- const byte* lens;
+ const byte* UNINIT_VAR(lens);
ulint i;
ulint prefix_len;
ulint null_mask;
@@ -2129,7 +2129,7 @@ rec_print_comp(
ulint i;
for (i = 0; i < rec_offs_n_fields(offsets); i++) {
- const byte* data;
+ const byte* UNINIT_VAR(data);
ulint len;
if (rec_offs_nth_default(offsets, i)) {