diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2006-06-20 19:25:51 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2006-06-20 19:25:51 +0000 |
commit | 9710f429583c1a1911faa1f3f0a094f05f91e30f (patch) | |
tree | b691abd440b09ce829dd0cf1e298bf07a752626f /dga.c | |
parent | 06af2bdc1793c5012a5d6760189127866677733d (diff) |
Check setuid() return value. Bugzilla #7116.
Diffstat (limited to 'dga.c')
-rw-r--r-- | dga.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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); |