From 41cf19030aadb8c9364dc01bb55e9a8e2e4e59de Mon Sep 17 00:00:00 2001 From: Austin Schey Date: Sun, 31 Mar 2024 08:04:09 -0500 Subject: [PATCH] minor changes to match other hooks --- src/hooks/preupdate_hook.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hooks/preupdate_hook.rs b/src/hooks/preupdate_hook.rs index f4d3845..e8301c0 100644 --- a/src/hooks/preupdate_hook.rs +++ b/src/hooks/preupdate_hook.rs @@ -195,15 +195,15 @@ impl InnerConnection { Action::UNKNOWN => PreUpdateCase::Unknown, }; - let _ = catch_unwind(|| { - let boxed_hook: *mut F = p_arg as *mut F; + drop(catch_unwind(|| { + let boxed_hook: *mut F = p_arg.cast(); (*boxed_hook)( action, expect_utf8(db_name, "database name"), expect_utf8(tbl_name, "table name"), &preupdate_case, ); - }); + })); } let free_preupdate_hook = if hook.is_some() { @@ -219,7 +219,7 @@ impl InnerConnection { ffi::sqlite3_preupdate_hook( self.db(), Some(call_boxed_closure::), - boxed_hook as *mut _, + boxed_hook.cast(), ) } }