Skip to content

Commit

Permalink
don't make user wait as much
Browse files Browse the repository at this point in the history
  • Loading branch information
nedwill committed Jan 5, 2017
1 parent 1e169ed commit 77b1716
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions source/exploit.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,13 +205,12 @@ static bool find_broken_link(void ***parent_ret, void **child_ret) {
if (prev_table[i] == NULL) {
if (*child_ret != NULL) {
printf("[!] Warning: unexpectedly found more than one NULL prev.\n");
wait_for_user();
}
*child_ret = (void *)TOBJ_IDX_TO_ADDR(ktimer_base, i);
printf("[+] found child: (%p ->) %p\n", prev_table[i], *child_ret);
wait_for_user();
}
}

if (*parent_ret == NULL) {
printf("[-] Failed to find parent for broken link search.\n");
return false;
Expand Down

1 comment on commit 77b1716

@nedwill
Copy link
Owner Author

@nedwill nedwill commented on 77b1716 Jan 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol you could say that. For the final release almost nothing will be printed. It's still in a very debug-friendly state.

Please sign in to comment.