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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
d34cc6b3
Commit
d34cc6b3
authored
Jun 12, 2020
by
Thirunarayanan Balathandayuthapani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-8139: Fix the MSAN instrumentation
parent
d2c593c2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
storage/innobase/include/fil0fil.h
storage/innobase/include/fil0fil.h
+1
-1
storage/innobase/mtr/mtr0mtr.cc
storage/innobase/mtr/mtr0mtr.cc
+2
-0
No files found.
storage/innobase/include/fil0fil.h
View file @
d34cc6b3
...
...
@@ -207,7 +207,7 @@ class range_set
return
remove_within_range
(
range
,
value
);
}
/** Add the value within the existing range
@param[in] range
_set::add_rangerange
range to be modified
@param[in] range range to be modified
@param[in] value value to be added */
range_set_t
::
iterator
add_within_range
(
range_set_t
::
iterator
range
,
uint32_t
value
)
...
...
storage/innobase/mtr/mtr0mtr.cc
View file @
d34cc6b3
...
...
@@ -354,7 +354,9 @@ struct mtr_write_log_t {
/** Start a mini-transaction. */
void
mtr_t
::
start
()
{
MEM_CHECK_DEFINED
(
&
m_freed_ranges
,
sizeof
m_freed_ranges
);
UNIV_MEM_INVALID
(
this
,
sizeof
*
this
);
UNIV_MEM_VALID
(
&
m_freed_ranges
,
sizeof
m_freed_ranges
);
ut_d
(
m_start
=
true
);
ut_d
(
m_commit
=
false
);
...
...
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