Skip to content

Commit bbb4906

Browse files
author
Robert Golebiowski
committed
Merge branch 'mysql-5.5' into mysql-5.6
2 parents 0cd3070 + 0632dae commit bbb4906

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

extra/yassl/README

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ before calling SSL_new();
1212

1313
*** end Note ***
1414

15+
yaSSL Patch notes, version 2.3.7e (6/26/2015)
16+
This release of yaSSL includes a fix for Date less than comparison.
17+
Previously yaSSL would return true on less than comparisons if the Dates
18+
were equal. Reported by Oracle. No security problem, but if a cert was
19+
generated right now, a server started using it in the same second, and a
20+
client tried to verify it in the same second it would report not yet valid.
21+
1522
yaSSL Patch notes, version 2.3.7d (6/22/2015)
1623
This release of yaSSL includes a fix for input_buffer set_current with
1724
index 0. SSL_peek() at front of waiting data could trigger. Robert

extra/yassl/include/openssl/ssl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include "rsa.h"
3535

3636

37-
#define YASSL_VERSION "2.3.7d"
37+
#define YASSL_VERSION "2.3.7e"
3838

3939

4040
#if defined(__cplusplus)

extra/yassl/taocrypt/src/asn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ bool operator>(tm& a, tm& b)
119119

120120
bool operator<(tm& a, tm&b)
121121
{
122-
return !(a>b);
122+
return (b>a);
123123
}
124124

125125

0 commit comments

Comments
 (0)