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
6445ae33
Commit
6445ae33
authored
Oct 25, 2006
by
knielsen@ymer.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge ymer.(none):/usr/local/mysql/mysql-4.1-ndb.tmp
into ymer.(none):/usr/local/mysql/mysql-5.0-ndb
parents
61f87f5d
44aa0f4d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
ndb/include/util/UtilBuffer.hpp
ndb/include/util/UtilBuffer.hpp
+6
-2
ndb/src/common/util/SimpleProperties.cpp
ndb/src/common/util/SimpleProperties.cpp
+2
-2
No files found.
ndb/include/util/UtilBuffer.hpp
View file @
6445ae33
...
...
@@ -73,11 +73,15 @@ public:
}
int
assign
(
const
void
*
d
,
size_t
l
)
{
if
(
data
)
free
(
data
);
/* Free the old data only after copying, in case d==data. */
void
*
old_data
=
data
;
data
=
NULL
;
len
=
0
;
alloc_size
=
0
;
return
append
(
d
,
l
);
int
ret
=
append
(
d
,
l
);
if
(
old_data
)
free
(
old_data
);
return
ret
;
}
void
clear
()
{
...
...
ndb/src/common/util/SimpleProperties.cpp
View file @
6445ae33
...
...
@@ -267,7 +267,7 @@ SimpleProperties::pack(Writer & it, const void * __src,
const
char
*
src_len
=
_src
+
_map
[
i
].
Length_Offset
;
Uint32
len
=
*
((
Uint32
*
)
src_len
);
if
(
!
ignoreMinMax
){
if
(
len
==
_map
[
i
].
maxValue
)
if
(
len
>
_map
[
i
].
maxValue
)
return
ValueTooHigh
;
}
ok
=
it
.
add
(
_map
[
i
].
Key
,
src
,
len
);
...
...
@@ -276,7 +276,7 @@ SimpleProperties::pack(Writer & it, const void * __src,
case
SimpleProperties
:
:
StringValue
:
if
(
!
ignoreMinMax
){
size_t
len
=
strlen
(
src
);
if
(
len
==
_map
[
i
].
maxValue
)
if
(
len
>
_map
[
i
].
maxValue
)
return
ValueTooHigh
;
}
ok
=
it
.
add
(
_map
[
i
].
Key
,
src
);
...
...
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