diff options
Diffstat (limited to 'ext/openssl')
| -rw-r--r-- | ext/openssl/ossl_asn1.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/openssl/ossl_asn1.c b/ext/openssl/ossl_asn1.c index 02d2f2caf..f0d8dda9b 100644 --- a/ext/openssl/ossl_asn1.c +++ b/ext/openssl/ossl_asn1.c @@ -28,9 +28,7 @@ asn1time_to_time(ASN1_TIME *time) struct tm tm; VALUE argv[6]; - if (!time) { - ossl_raise(rb_eTypeError, "ASN1_TIME is NULL!"); - } + if (!time || !time->data) return Qnil; memset(&tm, 0, sizeof(struct tm)); switch (time->type) { |
