summaryrefslogtreecommitdiffstats
path: root/etc/inc/util.inc
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2013-02-13 18:17:04 +0000
committerErmal <eri@pfsense.org>2013-02-13 18:19:18 +0000
commitfba1804f83ee771f82465dfced1497e352d97b30 (patch)
tree39a2e75a447883242955a6c441910ecb80dc071d /etc/inc/util.inc
parent87613be46dc1909e173cd8194f08e5364b5699ac (diff)
downloadpfsense-fba1804f83ee771f82465dfced1497e352d97b30.zip
pfsense-fba1804f83ee771f82465dfced1497e352d97b30.tar.gz
Assign the output of exec to a var to avoid any issues
Diffstat (limited to 'etc/inc/util.inc')
-rw-r--r--etc/inc/util.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/inc/util.inc b/etc/inc/util.inc
index 33914ae..6286572 100644
--- a/etc/inc/util.inc
+++ b/etc/inc/util.inc
@@ -1089,10 +1089,11 @@ function mwexec_bg($command, $clearsigmask = false) {
$oldset = array();
pcntl_sigprocmask(SIG_SETMASK, array(), $oldset);
}
- exec("nohup $command > /dev/null 2>&1 &");
+ $_gb = exec("nohup $command > /dev/null 2>&1 &");
if ($clearsigmask) {
pcntl_sigprocmask(SIG_SETMASK, $oldset);
}
+ unset($_gb);
}
/* unlink a file, if it exists */
OpenPOWER on IntegriCloud