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
3e50b4ec
Commit
3e50b4ec
authored
Nov 01, 2023
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed (wrong) compiler warning about uninitialized memory
parent
376ca2f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
sql/rpl_record.cc
sql/rpl_record.cc
+2
-1
No files found.
sql/rpl_record.cc
View file @
3e50b4ec
...
...
@@ -315,6 +315,7 @@ static void convert_field(Field *f, Field *result_field, Field *conv_field)
@retval HA_ERR_CORRUPT_EVENT
Found error when trying to unpack fields.
*/
int
unpack_row
(
const
rpl_group_info
*
rgi
,
TABLE
*
table
,
uint
const
colcnt
,
uchar
const
*
const
row_data
,
MY_BITMAP
const
*
cols
,
uchar
const
**
const
current_row_end
,
...
...
@@ -349,7 +350,7 @@ int unpack_row(const rpl_group_info *rgi, TABLE *table, uint const colcnt,
st
.
next_null_byte
();
if
(
!
rpl_data
.
is_online_alter
())
{
Field
*
result_field
;
Field
*
result_field
=
0
;
for
(;
i
<
colcnt
&&
(
result_field
=
table
->
field
[
i
]);
i
++
)
{
/*
...
...
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