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
9f6c4ad8
Commit
9f6c4ad8
authored
Sep 15, 2009
by
Sergey Petrunya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fixes
parent
151e5d58
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
8 deletions
+5
-8
extra/yassl/src/handshake.cpp
extra/yassl/src/handshake.cpp
+2
-2
extra/yassl/src/yassl_imp.cpp
extra/yassl/src/yassl_imp.cpp
+0
-1
extra/yassl/taocrypt/include/modes.hpp
extra/yassl/taocrypt/include/modes.hpp
+1
-1
extra/yassl/taocrypt/src/asn.cpp
extra/yassl/taocrypt/src/asn.cpp
+2
-2
storage/maria/ma_rt_index.c
storage/maria/ma_rt_index.c
+0
-2
No files found.
extra/yassl/src/handshake.cpp
View file @
9f6c4ad8
...
...
@@ -789,7 +789,7 @@ void processReply(SSL& ssl)
{
if
(
ssl
.
GetError
())
return
;
if
(
DoProcessReply
(
ssl
))
{
if
(
DoProcessReply
(
ssl
))
{
// didn't complete process
if
(
!
ssl
.
getSocket
().
IsNonBlocking
())
{
...
...
@@ -874,7 +874,7 @@ void sendServerKeyExchange(SSL& ssl, BufferOutput buffer)
// send change cipher
void
sendChangeCipher
(
SSL
&
ssl
,
BufferOutput
buffer
)
{
if
(
ssl
.
getSecurity
().
get_parms
().
entity_
==
server_end
)
{
if
(
ssl
.
getSecurity
().
get_parms
().
entity_
==
server_end
)
{
if
(
ssl
.
getSecurity
().
get_resuming
())
ssl
.
verifyState
(
clientKeyExchangeComplete
);
...
...
extra/yassl/src/yassl_imp.cpp
View file @
9f6c4ad8
...
...
@@ -1305,7 +1305,6 @@ void ServerHello::Process(input_buffer&, SSL& ssl)
ssl
.
useSecurity
().
use_connection
().
sessionID_Set_
=
false
;
if
(
ssl
.
getSecurity
().
get_resuming
())
{
{
if
(
memcmp
(
session_id_
,
ssl
.
getSecurity
().
get_resume
().
GetID
(),
ID_LEN
)
==
0
)
{
ssl
.
set_masterSecret
(
ssl
.
getSecurity
().
get_resume
().
GetSecret
());
...
...
extra/yassl/taocrypt/include/modes.hpp
View file @
9f6c4ad8
...
...
@@ -95,7 +95,7 @@ inline void Mode_BASE::Process(byte* out, const byte* in, word32 sz)
{
if
(
mode_
==
ECB
)
ECB_Process
(
out
,
in
,
sz
);
else
if
(
mode_
==
CBC
)
{
else
if
(
mode_
==
CBC
)
{
if
(
dir_
==
ENCRYPTION
)
CBC_Encrypt
(
out
,
in
,
sz
);
...
...
extra/yassl/taocrypt/src/asn.cpp
View file @
9f6c4ad8
...
...
@@ -1063,7 +1063,7 @@ word32 DecodeDSA_Signature(byte* decoded, const byte* encoded, word32 sz)
return
0
;
}
word32
rLen
=
GetLength
(
source
);
if
(
rLen
!=
20
)
{
if
(
rLen
!=
20
)
{
if
(
rLen
==
21
)
{
// zero at front, eat
source
.
next
();
...
...
@@ -1087,7 +1087,7 @@ word32 DecodeDSA_Signature(byte* decoded, const byte* encoded, word32 sz)
return
0
;
}
word32
sLen
=
GetLength
(
source
);
if
(
sLen
!=
20
)
{
if
(
sLen
!=
20
)
{
if
(
sLen
==
21
)
{
source
.
next
();
// zero at front, eat
...
...
storage/maria/ma_rt_index.c
View file @
9f6c4ad8
...
...
@@ -1136,8 +1136,6 @@ my_bool maria_rtree_real_delete(MARIA_HA *info, MARIA_KEY *key,
uchar
*
page_buf
;
MARIA_PAGE
page
;
MARIA_KEY
tmp_key
;
uchar
*
page_buf
;
MARIA_PAGE
page
;
tmp_key
.
keyinfo
=
key
->
keyinfo
;
tmp_key
.
data_length
=
key
->
data_length
;
tmp_key
.
ref_length
=
key
->
ref_length
;
...
...
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