Skip to content

Commit 5a8106d

Browse files
committed
Properly address feedback
1 parent 94ee848 commit 5a8106d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/x509.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8896,7 +8896,7 @@ static int X509CRLPrintExtensions(WOLFSSL_BIO* bio, WOLFSSL_X509_CRL* crl,
88968896
mp_int dec_num[1];
88978897
#endif
88988898

8899-
if (ret == 0 & mp_init(dec_num) != MP_OKAY) {
8899+
if (ret == 0 && (mp_init(dec_num) != MP_OKAY)) {
89008900
ret = MP_INIT_E;
89018901
}
89028902
else if (ret == 0) {
@@ -8933,7 +8933,7 @@ static int X509CRLPrintExtensions(WOLFSSL_BIO* bio, WOLFSSL_X509_CRL* crl,
89338933

89348934
XMEMSET(tmp, 0, sizeof(tmp));
89358935

8936-
if (freeMP) {
8936+
if (freeMp) {
89378937
mp_free(dec_num);
89388938
}
89398939

0 commit comments

Comments
 (0)