Skip to content

Commit

Permalink
After-merge fix: GCC -Wmaybe-uninitialized
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Jun 5, 2020
1 parent 680463a commit 286e52e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/innobase/page/page0page.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Copyright (c) 1994, 2016, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2012, Facebook Inc.
Copyright (c) 2017, 2019, MariaDB Corporation.
Copyright (c) 2017, 2020, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Expand Down Expand Up @@ -2409,7 +2409,7 @@ bool page_validate(const page_t* page, const dict_index_t* index)
const rec_t* rec;
const rec_t* old_rec = NULL;
const rec_t* first_rec = NULL;
ulint offs;
ulint offs = 0;
ulint n_slots;
ibool ret = TRUE;
ulint i;
Expand Down

0 comments on commit 286e52e

Please sign in to comment.