Code Review
/
apps
/
low-level-can-service.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
5703ad0
)
Fix bug in decoder with packed arrays.
author
Petteri Aimonen
<jpa@git.mail.kapsi.fi>
Tue, 31 Jul 2012 16:12:57 +0000
(19:12 +0300)
committer
Petteri Aimonen
<jpa@git.mail.kapsi.fi>
Tue, 31 Jul 2012 16:12:57 +0000
(19:12 +0300)
Update issue 23
Status: FixedInGit
pb_decode.c
patch
|
blob
|
history
diff --git
a/pb_decode.c
b/pb_decode.c
index
18941cb
..
6d3a0b6
100644
(file)
--- a/
pb_decode.c
+++ b/
pb_decode.c
@@
-288,6
+288,7
@@
static bool checkreturn decode_field(pb_istream_t *stream, pb_wire_type_t wire_t
&& PB_LTYPE(iter->current->type) <= PB_LTYPE_LAST_PACKABLE)
{
/* Packed array */
+ bool status;
size_t *size = (size_t*)iter->pSize;
pb_istream_t substream;
if (!make_string_substream(stream, &substream))
@@
-300,7
+301,9
@@
static bool checkreturn decode_field(pb_istream_t *stream, pb_wire_type_t wire_t
return false;
(*size)++;
}
- return (substream.bytes_left == 0);
+ status = (substream.bytes_left == 0);
+ stream->state = substream.state;
+ return status;
}
else
{