-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Length restriction for nested message not considered #356
Comments
treiher
added
bug
generator
Related to generator package (SPARK code generation)
labels
Jul 20, 2020
3 tasks
treiher
added a commit
that referenced
this issue
Jan 22, 2021
The condition was a remnent of the differentiation between bounded and unbounded opaque fields. Due to the changes for #356 this is not needed anymore.
treiher
added a commit
that referenced
this issue
Jan 22, 2021
The condition was a remnent of the differentiation between bounded and unbounded opaque fields. Due to the changes for #356 this is not needed anymore.
treiher
added a commit
that referenced
this issue
Jan 22, 2021
The condition was a remnant of the differentiation between bounded and unbounded opaque fields. Due to the changes for #356 this is not needed anymore.
treiher
added a commit
that referenced
this issue
Jan 25, 2021
The condition was a remnant of the differentiation between bounded and unbounded opaque fields. Due to the changes for #356 this is not needed anymore.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, two different bounds are stored in a context:
Buffer_First
,Buffer_Last
) of the memory used for the message.First
,Last
) defining the beginning and end of the message.While the bit range is fixed when parsing a message,
Last
is changed during the creation of a message.Last
can be increased as long as it does not exceedBuffer_Last
(converted to bit). This is sufficient if only one message is considered. But as soon as the length is restricted by an underlying message, a hard limit forLast
is needed which is possibly lower thenBuffer_Last
.The following cases must be considered:
Related issues:
Requires:
First
andLast
of contextThe text was updated successfully, but these errors were encountered: