Merge "Close unneeded fds before execing CRM 114."

This commit is contained in:
Jenkins 2014-02-05 19:40:50 +00:00 committed by Gerrit Code Review
commit b376158f7a

View File

@ -66,7 +66,8 @@ class CRM114Filter(object):
self.p = subprocess.Popen(args,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stdin=subprocess.PIPE)
stdin=subprocess.PIPE,
close_fds=True)
def process(self, data):
if not self.p: