this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[mldr] Only Execute "execv" Logic For "reexec32" On Supported Platforms

+2
+2
src/startup/mldr/mldr.c
··· 467 467 468 468 static void reexec32(char** argv) 469 469 { 470 + #if defined(__x86_64__) 470 471 char selfpath[1024]; 471 472 ssize_t len; 472 473 ··· 481 482 strcat(selfpath, "32"); 482 483 483 484 execv(selfpath, argv); 485 + #endif 484 486 485 487 perror("Cannot re-execute as 32-bit process"); 486 488 abort();