Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Research
ietf-suit
pull-cbor
Commits
15702828
Commit
15702828
authored
Jul 02, 2020
by
Brendan Moran
Browse files
Minor error in get_handler
parent
debfa49b
Changes
1
Hide whitespace changes
Inline
Side-by-side
source/suit_parser.c
View file @
15702828
...
...
@@ -256,7 +256,7 @@ static int get_handler(
if
(
cbor_type
!=
CBOR_TYPE_BSTR
>>
5
)
{
continue
;
}
cbor_type
=
cbor_sub
&
CBOR_TYPE_MASK
;
cbor_type
=
(
cbor_sub
&
CBOR_TYPE_MASK
)
>>
5
;
}
if
((
*
h
)
->
type
==
cbor_type
)
{
return
CBOR_ERR_NONE
;
...
...
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