sortix-mirror/dispd
Ralph Holmes 5d774cce1d Fix execl(3) sentinel undefined behaviour.
execl(3) and its variants use a sentinel to terminate the variadic
argument list, in the form of a null pointer constant of type pointer to
char. POSIX mandates that NULL is a null pointer constant of type
pointer to void, which is not of an equivalent type to that required by
execl(3) and its variants, resulting in undefined behaviour.

This commit casts all such instances of NULL to pointer to char type.
For consistency, it also adds const-qualification to any such instances
which had already been casted, and were not const-qualified.
2016-09-30 23:36:49 +02:00
..
client Fix execl(3) sentinel undefined behaviour. 2016-09-30 23:36:49 +02:00
include Relicense Sortix to the ISC license. 2016-03-05 22:21:50 +01:00
.gitignore Add dispd client library and server stub. 2013-09-24 17:09:48 +02:00
Makefile Convert dispd to C. 2016-03-03 23:02:23 +01:00