diff options
author | vlm <vlm@59561ff5-6e30-0410-9f3c-9617f08c8826> | 2007-06-29 23:23:05 +0000 |
---|---|---|
committer | vlm <vlm@59561ff5-6e30-0410-9f3c-9617f08c8826> | 2007-06-29 23:23:05 +0000 |
commit | ce82ea5264efe75f9ade27936e48ff80d66ed934 (patch) | |
tree | 6cb04a6ccf6927ac9f56b3a8c992de641dd76404 | |
parent | a0a8e7c368567a2009d8dc0b7dfdb8797ddd2314 (diff) |
ignore RC_WMORE
git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1374 59561ff5-6e30-0410-9f3c-9617f08c8826
-rw-r--r-- | skeletons/per_opentype.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/skeletons/per_opentype.c b/skeletons/per_opentype.c index 25c6d711..c749c8c6 100644 --- a/skeletons/per_opentype.c +++ b/skeletons/per_opentype.c @@ -121,6 +121,8 @@ uper_open_type_get_simple(asn_codec_ctx_t *ctx, asn_TYPE_descriptor_t *td, } } else { FREEMEM(buf); + /* rv.code could be RC_WMORE, nonsense in this context */ + rv.code = RC_FAIL; /* Noone would give us more */ } return rv; |