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
413a80d4
Commit
413a80d4
authored
Jun 15, 2006
by
aivanov@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post innodb-5.1-ss594 modifications.
Avoiding compilation error ("void * - unknown size").
parent
63649431
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
storage/innobase/mem/mem0mem.c
storage/innobase/mem/mem0mem.c
+1
-1
No files found.
storage/innobase/mem/mem0mem.c
View file @
413a80d4
...
...
@@ -144,7 +144,7 @@ mem_heap_cat(
void
*
res
=
mem_heap_alloc
(
heap
,
len1
+
len2
);
memcpy
(
res
,
b1
,
len1
);
memcpy
(
res
+
len1
,
b2
,
len2
);
memcpy
(
(
char
*
)
res
+
len1
,
b2
,
len2
);
return
(
res
);
}
...
...
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