We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7e11f7 + 4c899c1 commit 23ab48aCopy full SHA for 23ab48a
Changes
@@ -1,5 +1,10 @@
1
Revision history for Perl extension Net::SSLeay.
2
3
+????
4
+ - Pass RAND_seed()'s sole argument to the underlying RAND_seed() function in
5
+ libcrypto, rather than passing the value of a non-existent second argument.
6
+ Fixes GH-427. Thanks to cgf1 for the report.
7
+
8
1.93_02 2023-02-22
9
- Update ppport.h to version 3.68. This eliminates thousands of
10
compound-token-split-by-macro compiler warnings when building Net-SSLeay with
SSLeay.xs
@@ -3357,7 +3357,7 @@ RAND_seed(buf)
3357
PREINIT:
3358
STRLEN len;
3359
INPUT:
3360
- char * buf = SvPV( ST(1), len);
+ char *buf = SvPV(ST(0), len);
3361
CODE:
3362
RAND_seed (buf, (int)len);
3363
0 commit comments