From 9b652e84a85ee1e79ddcb7fe99744518c5cc5204 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 29 May 2002 23:13:16 +0000 Subject: [PATCH] Make i2c_ASN1_BIT_STRING return the correct length. --- crypto/asn1/a_bitstr.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/crypto/asn1/a_bitstr.c b/crypto/asn1/a_bitstr.c index cdedb29e4f..ecc0d4b8cd 100644 --- a/crypto/asn1/a_bitstr.c +++ b/crypto/asn1/a_bitstr.c @@ -89,8 +89,6 @@ int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp) if (a == NULL) return(0); len=a->length; - ret=1+len; - if (pp == NULL) return(ret); if (len > 0) { @@ -118,6 +116,10 @@ int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp) } else bits=0; + + ret=1+len; + if (pp == NULL) return(ret); + p= *pp; *(p++)=(unsigned char)bits; -- 2.50.1