alexcrichton opened PR #6692 from alexcrichton:smaller-unsafe-scope to bytecodealliance:main:
This commit fixes a mistake in the
PrePatchedFuncReftype where it has anunsafe implto make it send/sync but the target of the impl was mistakenlyInstancePre<T>Note that this doesn't actually have any impact on the send/sync-ness of
InstancePre<T>since it's not storing an instance ofT, so it's alwaysSend/Syncanyway. Nevertheless this reduces the scope of unsafety slightly as was originally intended.<!--
Please make sure you include the following information:
If this work has been discussed elsewhere, please include a link to that
conversation. If it was discussed in an issue, just mention "issue #...".Explain why this change is needed. If the details are in an issue already,
this can be brief.Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.htmlPlease ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->
alexcrichton requested fitzgen for a review on PR #6692.
alexcrichton requested wasmtime-core-reviewers for a review on PR #6692.
jameysharp submitted PR review:
This makes sense. But since this was passing CI before, I guess that nothing was depending on
PrePatchedFuncRefbeingSendorSync, so do we need those at all? Could theseunsafe impls just be deleted instead?
alexcrichton updated PR #6692.
alexcrichton merged PR #6692.
Last updated: Dec 13 2025 at 19:03 UTC