rename uc_context_free() to uc_mem_free(). see #373

This commit is contained in:
Nguyen Anh Quynh
2017-01-09 20:52:14 +08:00
parent af165d254c
commit fdbbdc6216
11 changed files with 27 additions and 25 deletions

View File

@ -759,9 +759,9 @@ static void test_i386_context_save(void)
printf(">>> EAX = 0x%x\n", r_eax);
// free the CPU context
err = uc_context_free(context);
err = uc_mem_free(context);
if (err) {
printf("Failed on uc_context_free() with error returned: %u\n", err);
printf("Failed on uc_mem_free() with error returned: %u\n", err);
return;
}