summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/openssl.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/openssl.c b/src/openssl.c
index 4564061..e070f91 100644
--- a/src/openssl.c
+++ b/src/openssl.c
@@ -6752,17 +6752,24 @@ static int xs_interpose(lua_State *L) {
6752static int xs_add(lua_State *L) { 6752static int xs_add(lua_State *L) {
6753 X509_STORE *store = checksimple(L, 1, X509_STORE_CLASS); 6753 X509_STORE *store = checksimple(L, 1, X509_STORE_CLASS);
6754 int i, top = lua_gettop(L); 6754 int i, top = lua_gettop(L);
6755 X509 *crt, *crt_dup;
6756 X509_CRL *crl, *crl_dup;
6755 6757
6756 for (i = 2; i <= top; i++) { 6758 for (i = 2; i <= top; i++) {
6757 if (lua_isuserdata(L, i)) { 6759 if ((crt = testsimple(L, i, X509_CERT_CLASS))) {
6758 X509 *crt = checksimple(L, i, X509_CERT_CLASS); 6760 if (!(crt_dup = X509_dup(crt)))
6759 X509 *dup; 6761 return auxL_error(L, auxL_EOPENSSL, "x509.store:add");
6760 6762
6761 if (!(dup = X509_dup(crt))) 6763 if (!X509_STORE_add_cert(store, crt_dup)) {
6764 X509_free(crt_dup);
6765 return auxL_error(L, auxL_EOPENSSL, "x509.store:add");
6766 }
6767 } else if ((crl = testsimple(L, i, X509_CRL_CLASS))) {
6768 if (!(crl_dup = X509_CRL_dup(crl)))
6762 return auxL_error(L, auxL_EOPENSSL, "x509.store:add"); 6769 return auxL_error(L, auxL_EOPENSSL, "x509.store:add");
6763 6770
6764 if (!X509_STORE_add_cert(store, dup)) { 6771 if (!X509_STORE_add_crl(store, crl_dup)) {
6765 X509_free(dup); 6772 X509_CRL_free(crl_dup);
6766 return auxL_error(L, auxL_EOPENSSL, "x509.store:add"); 6773 return auxL_error(L, auxL_EOPENSSL, "x509.store:add");
6767 } 6774 }
6768 } else { 6775 } else {