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.
1 parent c267588 commit 9ef1f84Copy full SHA for 9ef1f84
crypto/x509/v3_sxnet.c
@@ -78,6 +78,8 @@ static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
78
for (i = 0; i < sk_SXNETID_num(sx->ids); i++) {
79
id = sk_SXNETID_value(sx->ids, i);
80
tmp = i2s_ASN1_INTEGER(NULL, id->zone);
81
+ if (tmp == NULL)
82
+ return 0;
83
BIO_printf(out, "\n%*sZone: %s, User: ", indent, "", tmp);
84
OPENSSL_free(tmp);
85
ASN1_STRING_print(out, id->user);
0 commit comments