|
@@ -328,7 +328,8 @@ u32 asn_1_decode(u8 *asn_1_array)
|
|
|
} else {
|
|
|
word_count = length_field & 0x7f;
|
|
|
for (count = 0; count < word_count; count++) {
|
|
|
- length = (length | asn_1_array[count + 1]) << 8;
|
|
|
+ length = length << 8;
|
|
|
+ length += asn_1_array[count + 1];
|
|
|
dprintk(verbose, DST_CA_DEBUG, 1, " Length=[%04x]", length);
|
|
|
}
|
|
|
}
|