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
bab5491d
Commit
bab5491d
authored
Mar 25, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jimw/my/mysql-4.1-9323
into mysql.com:/home/jimw/my/mysql-4.1-clean
parents
a143dd14
f73f6c91
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
bdb/btree/bt_open.c
bdb/btree/bt_open.c
+1
-1
bdb/hash/hash_open.c
bdb/hash/hash_open.c
+1
-1
ndb/src/kernel/vm/VMSignal.cpp
ndb/src/kernel/vm/VMSignal.cpp
+2
-2
No files found.
bdb/btree/bt_open.c
View file @
bab5491d
...
...
@@ -489,7 +489,7 @@ __bam_new_file(dbp, txn, fhp, name)
goto
err
;
}
else
{
#ifdef DIAGNOSTIC
memset
(
buf
,
dbp
->
pgsize
,
0
);
memset
(
buf
,
0
,
dbp
->
pgsize
);
#endif
root
=
(
PAGE
*
)
buf
;
}
...
...
bdb/hash/hash_open.c
View file @
bab5491d
...
...
@@ -409,7 +409,7 @@ __ham_new_file(dbp, txn, fhp, name)
goto
err
;
}
else
{
#ifdef DIAGNOSTIC
memset
(
buf
,
dbp
->
pgsize
,
0
);
memset
(
buf
,
0
,
dbp
->
pgsize
);
#endif
page
=
(
PAGE
*
)
buf
;
}
...
...
ndb/src/kernel/vm/VMSignal.cpp
View file @
bab5491d
...
...
@@ -18,8 +18,8 @@
#include <string.h>
Signal
::
Signal
(){
memset
(
&
header
,
sizeof
(
header
),
0
);
memset
(
theData
,
sizeof
(
theData
),
0
);
memset
(
&
header
,
0
,
sizeof
(
header
)
);
memset
(
theData
,
0
,
sizeof
(
theData
)
);
}
void
...
...
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