rename API uc_mem_free() to uc_free(). see #662

This commit is contained in:
Nguyen Anh Quynh
2017-01-10 20:59:14 +08:00
parent 7512ff57de
commit bc569f5a54
11 changed files with 18 additions and 18 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_mem_free(context);
err = uc_free(context);
if (err) {
printf("Failed on uc_mem_free() with error returned: %u\n", err);
printf("Failed on uc_free() with error returned: %u\n", err);
return;
}