Fix memory leak in runtime interface
We used `slice::from_raw_parts` in runtime-interface which did not free the memory afterwards. This pr changes it to `Vec::from_raw_parts` to make sure `drop` is called properly and the values are freed.
parent
efd27a53
Please register or sign in to comment