summarylogtreecommitdiffstats
path: root/openssl-1.0.2a-x509.patch
diff options
context:
space:
mode:
authorMartchus2017-06-05 02:58:46 +0200
committerMartchus2017-06-05 02:58:46 +0200
commit0eccad051cfb1ec909fd6137a8625335fbcb2a3f (patch)
tree097d7f960b3143276d65c1eb2a5275b6f8f82aaa /openssl-1.0.2a-x509.patch
downloadaur-0eccad051cfb1ec909fd6137a8625335fbcb2a3f.tar.gz
Initial import
Diffstat (limited to 'openssl-1.0.2a-x509.patch')
-rw-r--r--openssl-1.0.2a-x509.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/openssl-1.0.2a-x509.patch b/openssl-1.0.2a-x509.patch
new file mode 100644
index 000000000000..7c96a578b60f
--- /dev/null
+++ b/openssl-1.0.2a-x509.patch
@@ -0,0 +1,28 @@
+diff -up openssl-1.0.2a/crypto/x509/by_file.c.x509 openssl-1.0.2a/crypto/x509/by_file.c
+--- openssl-1.0.2a/crypto/x509/by_file.c.x509 2015-04-09 18:16:29.365456157 +0200
++++ openssl-1.0.2a/crypto/x509/by_file.c 2015-04-09 18:16:26.398387618 +0200
+@@ -152,9 +152,12 @@ int X509_load_cert_file(X509_LOOKUP *ctx
+ }
+ }
+ i = X509_STORE_add_cert(ctx->store_ctx, x);
+- if (!i)
+- goto err;
+- count++;
++ /* ignore any problems with current certificate
++ and continue with the next one */
++ if (i)
++ count++;
++ else
++ ERR_clear_error();
+ X509_free(x);
+ x = NULL;
+ }
+@@ -167,7 +170,7 @@ int X509_load_cert_file(X509_LOOKUP *ctx
+ }
+ i = X509_STORE_add_cert(ctx->store_ctx, x);
+ if (!i)
+- goto err;
++ ERR_clear_error();
+ ret = i;
+ } else {
+ X509err(X509_F_X509_LOAD_CERT_FILE, X509_R_BAD_X509_FILETYPE);