github-actions[bot] commented on issue #6359:
Subscribe to Label Action
cc @peterhuene
<details>
This issue or pull request has been labeled: "wasmtime:c-api"Thus the following users have been cc'd because of the following labels:
- peterhuene: wasmtime:c-api
To subscribe or unsubscribe from this label, edit the <code>.github/subscribe-to-label.json</code> configuration file.
Learn more.
</details>
kpreisser commented on issue #6359:
Hi! From my testing, it seems the new
wasmtime_error_new
function in the C API doesn't copy the string passed by theconst char*
argument when being called; instead the supplied char pointer is dereferenced later afterwasmtime_error_new
has already returned, e.g. when returning thewasmtime_error_t*
in the epoch callback. Is this intended?I would have expected a similar behavior as
wasmtime_trap_new
, which copies the string when being called, so that the memory holding the string can be freed by the caller after the function returns. Otherwise, it's not quite clear to me when the memory can be freed.Thanks!
kpreisser edited a comment on issue #6359:
Hi! From my testing, it seems the new
wasmtime_error_new
function in the C API doesn't copy the string passed by theconst char*
argument when being called; instead the supplied char pointer is dereferenced later afterwasmtime_error_new
has already returned, e.g. when returning thewasmtime_error_t*
in the epoch deadline callback. Is this intended?I would have expected a similar behavior as
wasmtime_trap_new
, which copies the string when being called, so that the memory holding the string can be freed by the caller after the function returns. Otherwise, it's not quite clear to me when the memory can be freed.Thanks!
alexcrichton commented on issue #6359:
Ah thanks for testing! That's a mistake in the API and a subtle detail with the implementation. It's definitely not intended that the pointer should remain live, the contents should be copied into the error.
The line that needs to change is this one, namely the
anyhow!(msg_string)
should becomeanyhow!("{msg_string}")
. @theothergraham or @kpreisser would one of y'all be up for a PR along those lines?
theothergraham commented on issue #6359:
:face_palm: Sorry, that's my Rust newbieness showing. I missed that
String:: from_utf8_lossy()
only makes a copy if it finds invalid uft-8. I'll make a PR. Thank you for catching that, @kpreisser!
Last updated: Nov 22 2024 at 16:03 UTC