Merge pull request #1414 from napi-rs/delete-reference
Delete reference
This commit is contained in:
commit
75af3d4253
2 changed files with 1 additions and 7 deletions
|
@ -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…
Reference in a new issue