result = gum_memory_read result is null
forgottor opened this issue · 0 comments
forgottor commented
in frida-gum/tests/core/memory.c
MEMORY_TESTCASE (read_from_valid_address_should_succeed)
{
guint8 magic[2] = { 0x13, 0x37 };
gsize n_bytes_read;
guint8 * result;
result = gum_memory_read (GUM_ADDRESS (magic), sizeof (magic), &n_bytes_read);
g_assert (result != NULL);
g_assert_cmpuint (n_bytes_read, ==, sizeof (magic));
g_assert_cmphex (result[0], ==, magic[0]);
g_assert_cmphex (result[1], ==, magic[1]);
g_free (result);
}