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
370f79e3
Commit
370f79e3
authored
Jun 07, 2011
by
Michael Widenius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed strict alias problem by replacing = with memcpy()
parent
059aff15
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
sql/sql_class.h
sql/sql_class.h
+5
-1
No files found.
sql/sql_class.h
View file @
370f79e3
...
@@ -2334,7 +2334,11 @@ public:
...
@@ -2334,7 +2334,11 @@ public:
{
{
if
(
!
stmt_arena
->
is_conventional
())
if
(
!
stmt_arena
->
is_conventional
())
check_and_register_item_tree_change
(
place
,
new_value
,
mem_root
);
check_and_register_item_tree_change
(
place
,
new_value
,
mem_root
);
*
place
=
*
new_value
;
/*
We have to use memcpy instead of *place= *new_value merge to
avoid problems with strict aliasing.
*/
memcpy
((
char
*
)
place
,
new_value
,
sizeof
(
*
new_value
));
}
}
void
nocheck_register_item_tree_change
(
Item
**
place
,
Item
*
old_value
,
void
nocheck_register_item_tree_change
(
Item
**
place
,
Item
*
old_value
,
MEM_ROOT
*
runtime_memroot
);
MEM_ROOT
*
runtime_memroot
);
...
...
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