Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f3537f91 authored by David Howells's avatar David Howells Committed by Rusty Russell
Browse files

ASN.1: Fix an indefinite length skip error



Fix an error in asn1_find_indefinite_length() whereby small definite length
elements of size 0x7f are incorrecly classified as non-small.  Without this
fix, an error will be given as the length of the length will be perceived as
being very much greater than the maximum supported size.

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 12e130b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ static int asn1_find_indefinite_length(const unsigned char *data, size_t datalen

	/* Extract the length */
	len = data[dp++];
	if (len < 0x7f) {
	if (len <= 0x7f) {
		dp += len;
		goto next_tag;
	}