Skip to content

Commit 0093e6b

Browse files
committed
address type mismatch
1 parent e29c9db commit 0093e6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/openssl/openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2089,7 +2089,7 @@ PHP_FUNCTION(openssl_csr_parse)
20892089
case V_ASN1_NUMERICSTRING:
20902090
case V_ASN1_UTF8STRING:
20912091
case V_ASN1_IA5STRING:
2092-
add_assoc_stringl(&subitem, objbuf, bs->data, bs->length);
2092+
add_assoc_stringl(&subitem, objbuf, (char *)bs->data, bs->length);
20932093
break;
20942094
default:
20952095
add_assoc_stringl(&subitem, objbuf, unknown, sizeof(unknown));

0 commit comments

Comments
 (0)