diff options
Diffstat (limited to 'lib/asn1_decoder.c')
| -rw-r--r-- | lib/asn1_decoder.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1_decoder.c b/lib/asn1_decoder.c index 7bd2188ed93..11b9b01fda6 100644 --- a/lib/asn1_decoder.c +++ b/lib/asn1_decoder.c @@ -91,7 +91,7 @@ next_tag:  	/* Extract the length */  	len = data[dp++]; -	if (len < 0x7f) { +	if (len <= 0x7f) {  		dp += len;  		goto next_tag;  	}  |