*** empty log message ***

git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1013 59561ff5-6e30-0410-9f3c-9617f08c8826
This commit is contained in:
vlm 2005-11-27 12:40:43 +00:00
parent 194e03a2f1
commit cb38e73d19
1 changed files with 2 additions and 1 deletions

View File

@ -241,12 +241,13 @@ NativeInteger_decode_uper(asn_codec_ctx_t *opt_codec_ctx,
memset(&tmpint, 0, sizeof tmpint); memset(&tmpint, 0, sizeof tmpint);
rval = INTEGER_decode_uper(opt_codec_ctx, td, constraints, rval = INTEGER_decode_uper(opt_codec_ctx, td, constraints,
&tmpintptr, pd); &tmpintptr, pd);
if(rval.code == RC_OK) if(rval.code == RC_OK) {
if(asn_INTEGER2long(&tmpint, native)) if(asn_INTEGER2long(&tmpint, native))
rval.code = RC_FAIL; rval.code = RC_FAIL;
else else
ASN_DEBUG("NativeInteger %s got value %ld", ASN_DEBUG("NativeInteger %s got value %ld",
td->name, *native); td->name, *native);
}
asn_DEF_INTEGER.free_struct(&asn_DEF_INTEGER, &tmpint, 1); asn_DEF_INTEGER.free_struct(&asn_DEF_INTEGER, &tmpint, 1);
return rval; return rval;