Skip to content

Commit

Permalink
Update vmd.h
Browse files Browse the repository at this point in the history
  • Loading branch information
m1lkweed authored Jan 18, 2024
1 parent 4761e62 commit 9a97aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmd.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 88,7 @@ bool vmd_dbgpresent(void){
unsigned char *probe = malloc(0x10);
bool ret = (probe - &bss < 0x20000);
extern char etext, __executable_start;
if(((uintptr_t)(&etext) == (uintptr)(0x55555555546d)) || ((uintptr_t)(&__executable_start) == (uintptr)(0x555555554000)))
if(((uintptr_t)(&etext) == (uintptr_t)0x55555555546d) || ((uintptr_t)(&__executable_start) == (uintptr_t)0x555555554000))
return true;
free(probe);
if(ret)
Expand Down

0 comments on commit 9a97aec

Please sign in to comment.