execl("/bin/sh", "/bin/sh", 0);
编译时报警告
warning: missing sentinel in function call [-Wformat=]
查原型:
#include <unistd.h>
int execl(const char *path, const char*arg, ...);
需使用char*型的NULL作结束符,因0是int型,所以会报出警告。
execl("/bin/sh", "/bin/sh", 0);
编译时报警告
warning: missing sentinel in function call [-Wformat=]
查原型:
#include <unistd.h>
int execl(const char *path, const char*arg, ...);
需使用char*型的NULL作结束符,因0是int型,所以会报出警告。