summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/wgtpkg-certs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wgtpkg-certs.c b/src/wgtpkg-certs.c
index 1d8b976..b4b45fd 100644
--- a/src/wgtpkg-certs.c
+++ b/src/wgtpkg-certs.c
@@ -45,7 +45,7 @@ static int add_certificate_bin(const char *bin, int len)
const char *b, *e;
b = bin;
e = bin + len;
- while (len) {
+ while (b < e) {
X509 *x = d2i_X509(NULL, (const unsigned char **)&b, e-b);
if (x == NULL) {
syslog(LOG_ERR, "d2i_X509 failed");