Commit 286e52e9 authored by Marko Mäkelä's avatar Marko Mäkelä

After-merge fix: GCC -Wmaybe-uninitialized

parent 680463a8
......@@ -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
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment