mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
Merge pull request #1414 from napi-rs/delete-reference
Delete reference
This commit is contained in:
commit
75af3d4253
@ -50,7 +50,7 @@ tokio_time = ["tokio/time"]
|
||||
|
||||
[dependencies]
|
||||
ctor = "0.1"
|
||||
once_cell = "1"
|
||||
once_cell = "1.16"
|
||||
thread_local = "1"
|
||||
bitflags = "1"
|
||||
|
||||
|
||||
@ -598,12 +598,6 @@ extern "C" fn custom_gc(
|
||||
_context: *mut std::ffi::c_void,
|
||||
data: *mut std::ffi::c_void,
|
||||
) {
|
||||
let mut ref_count = 0;
|
||||
check_status_or_throw!(
|
||||
env,
|
||||
unsafe { sys::napi_reference_unref(env, data as sys::napi_ref, &mut ref_count) },
|
||||
"Failed to unref Buffer reference in Custom GC"
|
||||
);
|
||||
check_status_or_throw!(
|
||||
env,
|
||||
unsafe { sys::napi_delete_reference(env, data as sys::napi_ref) },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user