]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - lib/asn1_decoder.c
Merge remote-tracking branch 'asoc/fix/lm49453' into tmp
[karo-tx-linux.git] / lib / asn1_decoder.c
index 7bd2188ed93904521871a51dba0128a5d0aca163..11b9b01fda6b67303db4a7df22c19e2c35c4c095 100644 (file)
@@ -91,7 +91,7 @@ next_tag:
 
        /* Extract the length */
        len = data[dp++];
-       if (len < 0x7f) {
+       if (len <= 0x7f) {
                dp += len;
                goto next_tag;
        }