mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
13 lines
196 B
C
13 lines
196 B
C
#include <unistd.h>
|
|
|
|
int main(void)
|
|
{
|
|
char* bad[2] = { (char*)1, NULL };
|
|
char* good[1] = { NULL };
|
|
|
|
execve(NULL, bad, bad);
|
|
execve("/bin/true", good, good);
|
|
|
|
return 0;
|
|
}
|