Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
da702985
Commit
da702985
authored
Jul 03, 2014
by
John Esmet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FT-288 Fix warn-uninitialized errors found by gcc 4.9
parent
cb182c20
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
ft/ft-serialize.cc
ft/ft-serialize.cc
+3
-3
ft/ft_node-serialize.cc
ft/ft_node-serialize.cc
+1
-1
No files found.
ft/ft-serialize.cc
View file @
da702985
...
...
@@ -660,11 +660,11 @@ toku_deserialize_ft_from(int fd,
{
struct
rbuf
rb_0
;
struct
rbuf
rb_1
;
uint64_t
checkpoint_count_0
;
uint64_t
checkpoint_count_1
;
uint64_t
checkpoint_count_0
=
0
;
uint64_t
checkpoint_count_1
=
0
;
LSN
checkpoint_lsn_0
;
LSN
checkpoint_lsn_1
;
uint32_t
version_0
,
version_1
,
version
=
0
;
uint32_t
version_0
=
0
,
version_1
=
0
,
version
=
0
;
bool
h0_acceptable
=
false
;
bool
h1_acceptable
=
false
;
struct
rbuf
*
rb
=
NULL
;
...
...
ft/ft_node-serialize.cc
View file @
da702985
...
...
@@ -197,7 +197,7 @@ toku_maybe_preallocate_in_file (int fd, int64_t size, int64_t expected_size, int
// Effect: make the file bigger by either doubling it or growing by 16MiB whichever is less, until it is at least size
// Return 0 on success, otherwise an error number.
{
int64_t
file_size
;
int64_t
file_size
=
0
;
//TODO(yoni): Allow variable stripe_width (perhaps from ft) for larger raids
const
uint64_t
stripe_width
=
4096
;
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment