Commit faf35a84 authored by Lev Walkin's avatar Lev Walkin

*** empty log message ***

parent f36fcac0
...@@ -35,7 +35,8 @@ asn1f_parse_class_object(arg_t *arg) { ...@@ -35,7 +35,8 @@ asn1f_parse_class_object(arg_t *arg) {
expr->Identifier, eclass->Identifier, expr->_lineno); expr->Identifier, eclass->Identifier, expr->_lineno);
if(!eclass->with_syntax) { if(!eclass->with_syntax) {
DEBUG("Can't process classes without WITH SYNTAX just yet"); DEBUG("Can't process classes without %s just yet",
"WITH SYNTAX");
return 0; return 0;
} }
...@@ -101,9 +102,11 @@ _asn1f_parse_class_object_data(arg_t *arg, asn1p_expr_t *eclass, ...@@ -101,9 +102,11 @@ _asn1f_parse_class_object_data(arg_t *arg, asn1p_expr_t *eclass,
case WC_WHITESPACE: break; /* Ignore whitespace */ case WC_WHITESPACE: break; /* Ignore whitespace */
case WC_FIELD: { case WC_FIELD: {
struct asn1p_ioc_cell_s *cell; struct asn1p_ioc_cell_s *cell;
int lbraces = 0;
uint8_t *p; uint8_t *p;
SKIPSPACES; SKIPSPACES;
int lbraces = 0;
p = buf; p = buf;
if(p < bend && *p == '{') if(p < bend && *p == '{')
lbraces = 1, p++; lbraces = 1, p++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment