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
ef4c0d80
Commit
ef4c0d80
authored
Apr 06, 2006
by
stewart@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/stewart/Documents/MySQL/5.1/new
into mysql.com:/home/stewart/Documents/MySQL/5.1/new-bug18831
parents
ceb0a0b2
c7f3ce11
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp
storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp
+4
-2
No files found.
storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp
View file @
ef4c0d80
...
...
@@ -233,7 +233,7 @@ sizeof(SimpleProperties::SP2StructMapping);
void
DictFilegroupInfo
::
Filegroup
::
init
(){
memset
(
FilegroupName
,
sizeof
(
FilegroupName
),
0
);
memset
(
FilegroupName
,
0
,
sizeof
(
FilegroupName
)
);
FilegroupType
=
~
0
;
FilegroupId
=
~
0
;
FilegroupVersion
=
~
0
;
...
...
@@ -244,8 +244,10 @@ DictFilegroupInfo::Filegroup::init(){
TS_DataGrow
.
GrowLimit
=
0
;
TS_DataGrow
.
GrowSizeHi
=
0
;
TS_DataGrow
.
GrowSizeLo
=
0
;
memset
(
TS_DataGrow
.
GrowPattern
,
sizeof
(
TS_DataGrow
.
GrowPattern
),
0
);
memset
(
TS_DataGrow
.
GrowPattern
,
0
,
sizeof
(
TS_DataGrow
.
GrowPattern
)
);
TS_DataGrow
.
GrowMaxSize
=
0
;
LF_UndoFreeWordsHi
=
0
;
LF_UndoFreeWordsLo
=
0
;
}
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