Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
asn1c
Commits
9100393b
Commit
9100393b
authored
Feb 15, 2024
by
v0-e
Committed by
Mouse
Feb 15, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jer: OBJECT IDENTIFIER missing quotes
parent
e0c4a3ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
2 deletions
+29
-2
skeletons/OBJECT_IDENTIFIER_jer.c
skeletons/OBJECT_IDENTIFIER_jer.c
+29
-2
No files found.
skeletons/OBJECT_IDENTIFIER_jer.c
View file @
9100393b
...
...
@@ -6,11 +6,14 @@
#include <asn_internal.h>
#include <OBJECT_IDENTIFIER.h>
#define CQUOTE 0x22
static
enum
jer_pbd_rval
OBJECT_IDENTIFIER__jer_body_decode
(
const
asn_TYPE_descriptor_t
*
td
,
void
*
sptr
,
const
void
*
chunk_buf
,
size_t
chunk_size
)
{
OBJECT_IDENTIFIER_t
*
st
=
(
OBJECT_IDENTIFIER_t
*
)
sptr
;
const
char
*
chunk_end
=
(
const
char
*
)
chunk_buf
+
chunk_size
;
const
char
*
p
=
(
const
char
*
)
chunk_buf
;
const
char
*
endptr
;
asn_oid_arc_t
s_arcs
[
10
];
asn_oid_arc_t
*
arcs
=
s_arcs
;
...
...
@@ -19,6 +22,23 @@ OBJECT_IDENTIFIER__jer_body_decode(const asn_TYPE_descriptor_t *td, void *sptr,
(
void
)
td
;
/* Strip quotes */
for
(;
p
<
chunk_end
;
++
p
)
{
if
(
*
p
==
CQUOTE
)
{
++
p
;
break
;
}
}
--
chunk_end
;
for
(;
chunk_end
>=
p
;
--
chunk_end
)
{
if
(
*
chunk_end
==
CQUOTE
)
break
;
}
if
(
chunk_end
-
p
<
0
)
return
JPBD_BROKEN_ENCODING
;
chunk_size
=
chunk_end
-
p
;
chunk_buf
=
p
;
num_arcs
=
OBJECT_IDENTIFIER_parse_arcs
(
(
const
char
*
)
chunk_buf
,
chunk_size
,
arcs
,
sizeof
(
s_arcs
)
/
sizeof
(
s_arcs
[
0
]),
&
endptr
);
...
...
@@ -65,6 +85,7 @@ OBJECT_IDENTIFIER_encode_jer(const asn_TYPE_descriptor_t *td, const void *sptr,
asn_app_consume_bytes_f
*
cb
,
void
*
app_key
)
{
const
OBJECT_IDENTIFIER_t
*
st
=
(
const
OBJECT_IDENTIFIER_t
*
)
sptr
;
asn_enc_rval_t
er
=
{
0
,
0
,
0
};
ssize_t
oid_encoded
=
0
;
(
void
)
ilevel
;
(
void
)
flags
;
...
...
@@ -73,8 +94,14 @@ OBJECT_IDENTIFIER_encode_jer(const asn_TYPE_descriptor_t *td, const void *sptr,
ASN__ENCODE_FAILED
;
}
er
.
encoded
=
OBJECT_IDENTIFIER__dump_body
(
st
,
cb
,
app_key
);
if
(
er
.
encoded
<
0
)
ASN__ENCODE_FAILED
;
ASN__CALLBACK
(
"
\"
"
,
1
);
oid_encoded
=
OBJECT_IDENTIFIER__dump_body
(
st
,
cb
,
app_key
);
if
(
oid_encoded
<
0
)
goto
cb_failed
;
er
.
encoded
+=
oid_encoded
;
ASN__CALLBACK
(
"
\"
"
,
1
);
ASN__ENCODED_OK
(
er
);
cb_failed:
ASN__ENCODE_FAILED
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment