summaryrefslogtreecommitdiffstats
path: root/ax25/axspawn.c
diff options
context:
space:
mode:
authorThomas Osterried <thomas@osterried.de>2011-08-18 09:51:08 +0000
committerThomas Osterried <thomas@osterried.de>2011-08-18 09:51:08 +0000
commit2f6426a5433b4cd9026a51db1787bca66fa88252 (patch)
treed08ee0fb18768c87c20ed34da0d0f040a9ac288e /ax25/axspawn.c
parenta20d6e2afb1c132c18b5a72e97e2fcca39bb542c (diff)
Fix for CVE-2011-2910: check return status of setuid(), ..
Diffstat (limited to 'ax25/axspawn.c')
-rw-r--r--ax25/axspawn.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ax25/axspawn.c b/ax25/axspawn.c
index 544abea..a2b132b 100644
--- a/ax25/axspawn.c
+++ b/ax25/axspawn.c
@@ -1,6 +1,6 @@
/*
*
- * $Id: axspawn.c,v 1.24 2010/03/31 08:06:59 dl9sau Exp $
+ * $Id: axspawn.c,v 1.25 2011/08/18 09:51:08 dl9sau Exp $
*
* axspawn.c - run a program from ax25d.
*
@@ -1693,7 +1693,8 @@ again:
pututline(&ut_line);
endutent();
- setsid();
+ if (setsid() == -1)
+ exit(1);
chargc = 0;
envc = 0;