Skip to content

Commit

Permalink
Fix a silly error, should notice a certain something runs a bit bette…
Browse files Browse the repository at this point in the history
…r now
  • Loading branch information
spender-sandbox committed Mar 8, 2017
1 parent 352d895 commit 49e56c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hook_thread.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ HOOKDEF(NTSTATUS, WINAPI, RtlCreateUserThread,
if (CreateSuspended == FALSE) {
lasterror_t lasterror;
get_lasterrors(&lasterror);
ResumeThread(ThreadHandle);
ResumeThread(*ThreadHandle);
set_lasterrors(&lasterror);
}
}
Expand Down

0 comments on commit 49e56c3

Please sign in to comment.