Skip to content
Permalink
Browse files
Fix more -Wnonnull-compare
For some reason, GCC 8 did not issue warnings for all such comparisons.
  • Loading branch information
dr-m committed Apr 3, 2019
1 parent c0fca28 commit fa14784
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
@@ -1087,7 +1087,6 @@ trx_undo_rec_get_partial_row(
const byte* end_ptr;
ulint row_len;

ut_ad(ptr);
ut_ad(dict_index_is_clust(index));

row_len = dict_table_get_n_cols(index->table);
@@ -1087,7 +1087,6 @@ trx_undo_rec_get_partial_row(
const byte* end_ptr;
ulint row_len;

ut_ad(ptr);
ut_ad(dict_index_is_clust(index));

row_len = dict_table_get_n_cols(index->table);

0 comments on commit fa14784

Please sign in to comment.