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
dee535be
Commit
dee535be
authored
Mar 25, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jimw/my/mysql-4.1-clean
into mysql.com:/home/jimw/my/mysql-5.0-clean
parents
a13ef90e
4f19826d
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
5 deletions
+10
-5
bdb/btree/bt_open.c
bdb/btree/bt_open.c
+1
-1
bdb/hash/hash_open.c
bdb/hash/hash_open.c
+1
-1
client/mysql.cc
client/mysql.cc
+6
-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 @
dee535be
...
...
@@ -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 @
dee535be
...
...
@@ -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
;
}
...
...
client/mysql.cc
View file @
dee535be
...
...
@@ -3090,9 +3090,14 @@ void tee_fprintf(FILE *file, const char *fmt, ...)
#ifdef OS2
fflush
(
file
);
#endif
va_end
(
args
);
if
(
opt_outfile
)
{
va_start
(
args
,
fmt
);
(
void
)
vfprintf
(
OUTFILE
,
fmt
,
args
);
va_end
(
args
);
}
}
...
...
ndb/src/kernel/vm/VMSignal.cpp
View file @
dee535be
...
...
@@ -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