Skip to content
Snippets Groups Projects
Commit da161988 authored by Lev Walkin's avatar Lev Walkin
Browse files

fixed bug #58

parent 3e0b0f2d
No related branches found
No related tags found
No related merge requests found
......@@ -360,7 +360,9 @@ per_skip_bits(asn_per_data_t *pd, int skip_nbits) {
int hasNonZeroBits = 0;
while(skip_nbits > 0) {
int skip;
if(skip_nbits < skip)
/* per_get_few_bits() is more efficient when nbits <= 24 */
if(skip_nbits < 24)
skip = skip_nbits;
else
skip = 24;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment