diff options
| author | ths | 2007-03-19 17:36:43 +0100 |
|---|---|---|
| committer | ths | 2007-03-19 17:36:43 +0100 |
| commit | 50d3eeae384382671952bc40e00a58f5ab00fed0 (patch) | |
| tree | fe47721cf7cc404c410acf2d99dc9a6c337b08b3 | |
| parent | Improve -pidfile option, by Anthony Liguori. (diff) | |
| download | qemu-50d3eeae384382671952bc40e00a58f5ab00fed0.tar.gz qemu-50d3eeae384382671952bc40e00a58f5ab00fed0.tar.xz qemu-50d3eeae384382671952bc40e00a58f5ab00fed0.zip | |
Close file descriptors when execing network tap setup script, by
Daniel P. Berrange.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2507 c046a42c-6fe2-441c-8c8c-71466251a162
| -rw-r--r-- | vl.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -3621,6 +3621,14 @@ static int net_tap_init(VLANState *vlan, const char *ifname1, pid = fork(); if (pid >= 0) { if (pid == 0) { + int open_max = sysconf (_SC_OPEN_MAX), i; + for (i = 0; i < open_max; i++) + if (i != STDIN_FILENO && + i != STDOUT_FILENO && + i != STDERR_FILENO && + i != fd) + close(i); + parg = args; *parg++ = (char *)setup_script; *parg++ = ifname; |
