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
82571d6b
Commit
82571d6b
authored
Feb 22, 2005
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MYSQL_LOG::recover was trying to allocate 0 bytes - bug#8661
parent
178be07a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/log.cc
sql/log.cc
+2
-2
No files found.
sql/log.cc
View file @
82571d6b
...
...
@@ -3000,11 +3000,11 @@ int TC_LOG_BINLOG::recover(IO_CACHE *log, Format_description_log_event *fdle)
MEM_ROOT
mem_root
;
if
(
!
fdle
->
is_valid
()
||
hash_init
(
&
xids
,
&
my_charset_bin
,
tc_log_page_size
/
3
,
0
,
hash_init
(
&
xids
,
&
my_charset_bin
,
TC_LOG_PAGE_SIZE
/
3
,
0
,
sizeof
(
my_xid
),
0
,
0
,
MYF
(
0
)))
goto
err1
;
init_alloc_root
(
&
mem_root
,
tc_log_page_size
,
tc_log_page_size
);
init_alloc_root
(
&
mem_root
,
TC_LOG_PAGE_SIZE
,
TC_LOG_PAGE_SIZE
);
fdle
->
flags
&=
~
LOG_EVENT_BINLOG_IN_USE_F
;
// abort on the first error
...
...
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