diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-09-11 20:55:44 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-09-11 20:55:44 +0200 |
commit | dde60c5696f6779ea48febdac315083fb50e3075 (patch) | |
tree | 66d44cfa939ef90f03dccc6378213b7df47a14d5 /apt-pkg | |
parent | e43312cf4e19bd3eab15a4f43a586e2ab28c9763 (diff) | |
parent | faebb6992f9a4b8cfe95083c2ad63ff49b608ed0 (diff) |
* fix missing SetExecClose() call when the status-fd is used
(LP: #136767)
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/packagemanager.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apt-pkg/packagemanager.h b/apt-pkg/packagemanager.h index 53600fb61..adcbec3d0 100644 --- a/apt-pkg/packagemanager.h +++ b/apt-pkg/packagemanager.h @@ -91,6 +91,8 @@ class pkgPackageManager : protected pkgCache::Namespace // stuff that needs to be done after the fork OrderResult DoInstallPostFork(int statusFd=-1) { + if(statusFd > 0) + SetCloseExec(statusFd, true); bool goResult = Go(statusFd); if(goResult == false) return Failed; |