You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Motivation
<!--
Briefly describe the goal(s) of this PR.
-->
When allocating heap memory in Witty, the alignment was incorrectly
hard-coded to `1`. This causes issues when the allocated memory does not
start at an aligned address. The code to store types will automatically
add padding, which offsets the start of the write and can then overflow
the allocated region.
## Proposal
<!--
Summarize the proposed changes and how they address the goal(s) stated
above.
-->
Specify the allocation alignment whenever needed.
## Test Plan
<!--
Explain how you made sure that the changes are correct and that they
perform as intended.
Please describe testing protocols (CI, manual tests, benchmarks, etc) in
a way that others
can reproduce the results.
-->
Unit tests were added, including one that reproduces the issue
`wit_store::test_list_fields` and now passes with the fix.
## Release Plan
<!--
If this PR targets the `main` branch, **keep the applicable lines** to
indicate if you
recommend the changes to be picked in release branches, SDKs, and
hotfixes.
This generally concerns only bug fixes.
Note that altering the public protocol (e.g. transaction format, WASM
syscalls) or storage
formats requires a new deployment.
-->
- Backporting is not possible but we may want to deploy a new `devnet`
and release a new
SDK soon.
## Links
<!--
Optional section for related PRs, related issues, and other references.
If needed, please create issues to track future improvements and link
them here.
-->
- [reviewer
checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
0 commit comments