fix(core): fix compilation in NSData+SMIME.m

This commit is contained in:
Francis Lachapelle
2022-02-02 10:11:59 -05:00
parent f5f1594972
commit e3b71bc23b

View File

@@ -81,7 +81,7 @@
}
chain = sk_X509_new_null();
while (link = PEM_read_bio_X509_AUX(tbio, NULL, 0, NULL))
while ((link = PEM_read_bio_X509_AUX(tbio, NULL, 0, NULL)))
sk_X509_unshift(chain, link);
BIO_reset(tbio);