this repo has no description
1
fork

Configure Feed

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

Fail gracefull when NULL path is passed to open()

+2
+2
src/kernel/emulation/linux/fcntl/openat.c
··· 28 28 long sys_openat_nocancel(int fd, const char* filename, int flags, unsigned int mode) 29 29 { 30 30 int ret, linux_flags; 31 + if (!filename) 32 + return -EFAULT; 31 33 32 34 linux_flags = oflags_bsd_to_linux(flags); 33 35