diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | dga.c | 6 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-06-20 Matthieu Herrb <matthieu.herrb@laas.fr> + + * dga.c: + Check setuid() return value. Bugzilla #7116. + 2005-12-20 Kevin E. Martin <kem-at-freedesktop-dot-org> * configure.ac: @@ -16,6 +16,7 @@ #include <X11/Xmd.h> #include <X11/extensions/xf86dga.h> #include <ctype.h> +#include <errno.h> #include <stdio.h> #include <stdlib.h> #include <signal.h> @@ -141,7 +142,10 @@ main(int argc, char *argv[]) #ifndef __UNIXOS2__ /* Give up root privs */ - setuid(getuid()); + if (setuid(getuid()) == -1) { + fprintf(stderr, "Unable to change uid: %s\n", strerror(errno)); + exit(2); + } #endif XF86DGASetViewPort(dis, DefaultScreen(dis), 0, 0); |