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
af171ae3
Commit
af171ae3
authored
Sep 17, 2001
by
heikki@donna.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
log0log.c Eliminate a Purify warning
buf0buf.c Fix uninitilaized flush field noticed with Purify
parent
8fff8f18
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
innobase/buf/buf0buf.c
innobase/buf/buf0buf.c
+1
-0
innobase/log/log0log.c
innobase/log/log0log.c
+2
-1
No files found.
innobase/buf/buf0buf.c
View file @
af171ae3
...
@@ -359,6 +359,7 @@ buf_pool_create(
...
@@ -359,6 +359,7 @@ buf_pool_create(
for
(
i
=
BUF_FLUSH_LRU
;
i
<=
BUF_FLUSH_LIST
;
i
++
)
{
for
(
i
=
BUF_FLUSH_LRU
;
i
<=
BUF_FLUSH_LIST
;
i
++
)
{
buf_pool
->
n_flush
[
i
]
=
0
;
buf_pool
->
n_flush
[
i
]
=
0
;
buf_pool
->
init_flush
[
i
]
=
FALSE
;
buf_pool
->
no_flush
[
i
]
=
os_event_create
(
NULL
);
buf_pool
->
no_flush
[
i
]
=
os_event_create
(
NULL
);
}
}
...
...
innobase/log/log0log.c
View file @
af171ae3
...
@@ -613,6 +613,7 @@ log_init(void)
...
@@ -613,6 +613,7 @@ log_init(void)
log_sys
->
archiving_state
=
LOG_ARCH_ON
;
log_sys
->
archiving_state
=
LOG_ARCH_ON
;
log_sys
->
archived_lsn
=
log_sys
->
lsn
;
log_sys
->
archived_lsn
=
log_sys
->
lsn
;
log_sys
->
next_archived_lsn
=
ut_dulint_zero
;
log_sys
->
n_pending_archive_ios
=
0
;
log_sys
->
n_pending_archive_ios
=
0
;
...
...
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