From 55c3274824a1c37373c30098936372d639276689 Mon Sep 17 00:00:00 2001 From: vlm Date: Sat, 10 Nov 2007 02:05:23 +0000 Subject: [PATCH] problem reported by ExtraHop networks git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1395 59561ff5-6e30-0410-9f3c-9617f08c8826 --- skeletons/INTEGER.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/skeletons/INTEGER.c b/skeletons/INTEGER.c index 7fe3e84d..3a548e67 100644 --- a/skeletons/INTEGER.c +++ b/skeletons/INTEGER.c @@ -576,6 +576,8 @@ INTEGER_decode_uper(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td, } FREEMEM(st->buf); + st->buf = 0; + st->size = 0; if(ct) { if(ct->flags & APC_SEMI_CONSTRAINED) { st->buf = (uint8_t *)CALLOC(1, 2); @@ -586,11 +588,7 @@ INTEGER_decode_uper(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td, st->buf = (uint8_t *)MALLOC(1 + size + 1); if(!st->buf) _ASN_DECODE_FAILED; st->size = size; - } else { - st->size = 0; } - } else { - st->size = 0; } /* X.691, #12.2.2 */