From 0caeb12499dc4d128b84f95e5b047b8f6b6e03e4 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 24 Jun 2003 06:05:47 +0000 Subject: From Matthijs Melchior: when setting "eoc" in "asn1_bits_decode()", get the offset from before the byte with the number of unused bits is fetched, so that we count that byte. svn path=/trunk/; revision=7920 --- asn1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'asn1.c') diff --git a/asn1.c b/asn1.c index 709b070a78..e3bf728548 100644 --- a/asn1.c +++ b/asn1.c @@ -1,7 +1,7 @@ /* asn1.c * Routines for ASN.1 BER dissection * - * $Id: asn1.c,v 1.19 2003/05/10 02:00:41 guy Exp $ + * $Id: asn1.c,v 1.20 2003/06/24 06:05:47 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -607,6 +607,7 @@ asn1_bits_decode ( ASN1_SCK *asn1, int enc_len, guchar **bits, int eoc; guchar *ptr; + eoc = asn1->offset + enc_len; *bits = NULL; ret = asn1_octet_decode (asn1, unused); if (ret != ASN1_ERR_NOERROR) @@ -634,7 +635,6 @@ asn1_bits_decode ( ASN1_SCK *asn1, int enc_len, guchar **bits, *bits = g_malloc (1); } - eoc = asn1->offset + enc_len; ptr = *bits; while (asn1->offset < eoc) { ret = asn1_octet_decode (asn1, (guchar *)ptr++); -- cgit v1.2.3