We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edb8cc0 commit 128a7ddCopy full SHA for 128a7dd
Verify.pm
@@ -5,7 +5,7 @@ use warnings;
5
6
require 5.010;
7
8
-our $VERSION = '0.20';
+our $VERSION = '0.21';
9
10
use Crypt::OpenSSL::X509;
11
Verify.xs
@@ -273,11 +273,13 @@ SV * new(class, ...)
273
274
275
if (items > 1) {
276
- if (ST(1) != NULL)
+ if (ST(1) != NULL) {
277
// TODO: ensure_string_sv
278
CAfile = ST(1);
279
- if (strlen(SvPV_nolen(CAfile)) == 0)
+ if (strlen(SvPV_nolen(CAfile)) == 0) {
280
CAfile = NULL;
281
+ }
282
283
284
if (items > 2)
285
options = ensure_hv(ST(2), "options");
0 commit comments