Simplify code a bit.

This commit is contained in:
Pawel Jakub Dawidek 2012-02-28 22:36:54 +01:00
parent 54b26c4f40
commit 9783247b25
1 changed files with 2 additions and 6 deletions

View File

@ -407,18 +407,14 @@ void per_write_octet_string(STREAM* s, uint8* oct_str, int length, int min)
boolean per_read_numeric_string(STREAM* s, int min)
{
int i;
int length;
uint16 mlength;
per_read_length(s, &mlength);
length = mlength + min;
length = (mlength + min + 1) / 2;
for (i = 0; i < length; i += 2)
{
stream_seek(s, 1);
}
stream_seek(s, length);
return true;
}