From 551e9c94b3e067f548bcf08e1c3f202f90d6558c Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Sat, 28 Oct 2017 04:27:44 +0200 Subject: fix compiler warning: drop dead code from BIT_STRING_fromBuf() The warning is, on FreeBSD, CC asn1helpers.lo asn1helpers.c:68:10: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare] if (len < 0) ~~~ ^ ~ Change-Id: I80867da697d744d7ef4d70c8f24031f5781fb11a --- src/asn1helpers.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/asn1helpers.c b/src/asn1helpers.c index a4ced70..4e5e08d 100644 --- a/src/asn1helpers.c +++ b/src/asn1helpers.c @@ -65,9 +65,6 @@ int BIT_STRING_fromBuf(BIT_STRING_t *st, const uint8_t *str, unsigned int bit_le return 0; } - if (len < 0) - len = strlen((char*)str); - buf = MALLOC(len); if (!buf) { errno = ENOMEM; -- cgit v1.2.3