Fix the number of highlighted bytes in case of unaligned PER constrained integer

svn path=/trunk/; revision=53400
This commit is contained in:
Pascal Quantin 2013-11-17 17:00:11 +00:00
parent 1c73d047b3
commit b4b5d00712
1 changed files with 1 additions and 1 deletions

View File

@ -1271,7 +1271,7 @@ DEBUG_ENTRY("dissect_per_constrained_integer");
i = i-1;
num_bits = i;
length=1;
length=(num_bits+7)>>3;
if(range<=2){
num_bits=1;
}