From 9783247b259ca200f9a22831e095ba873fe68974 Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Tue, 28 Feb 2012 22:36:54 +0100 Subject: [PATCH] Simplify code a bit. --- libfreerdp-crypto/per.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/libfreerdp-crypto/per.c b/libfreerdp-crypto/per.c index b10b57b..dad589a 100644 --- a/libfreerdp-crypto/per.c +++ b/libfreerdp-crypto/per.c @@ -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; } -- 2.7.4