frida 17.7.1 → 17.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/frida_bindgen/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/__main__.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/cli.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/codegen.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/customization.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/loader.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/model.cpython-312.pyc +0 -0
- package/src/frida_bindgen/assets/codegen_helpers.c +2 -10
- package/subprojects/frida-core.wrap +1 -1
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -691,17 +691,9 @@ fdn_variant_from_value (napi_env env,
|
|
|
691
691
|
napi_get_property (env, first, desc_prop, &desc);
|
|
692
692
|
fdn_utf8_from_value (env, desc, &type);
|
|
693
693
|
|
|
694
|
-
if (
|
|
695
|
-
{
|
|
696
|
-
gint64 i;
|
|
697
|
-
|
|
698
|
-
if (!fdn_int64_from_value (env, second, &i))
|
|
699
|
-
return FALSE;
|
|
700
|
-
|
|
701
|
-
val = g_variant_ref_sink (g_variant_new_uint64 ((guint64) i));
|
|
702
|
-
}
|
|
703
|
-
else if (!fdn_variant_from_value (env, second, &val))
|
|
694
|
+
if (!fdn_variant_from_value (env, second, &val))
|
|
704
695
|
{
|
|
696
|
+
g_free (type);
|
|
705
697
|
return FALSE;
|
|
706
698
|
}
|
|
707
699
|
|