1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

by receiving an invalid system call, the application will be terminated

This commit is contained in:
Stefan Lankes 2016-03-16 09:35:27 +01:00
parent 8bd1fb6948
commit 7308fe9f44

View file

@ -397,6 +397,7 @@ int handle_syscalls(int s)
}
default:
fprintf(stderr, "Proxy: invalid syscall number %d\n", sysnr);
exit(1);
break;
}
}