diff options
-rwxr-xr-x | examples/pysolv | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/pysolv b/examples/pysolv index da9971a..a658eab 100755 --- a/examples/pysolv +++ b/examples/pysolv @@ -888,6 +888,9 @@ if newpkgs: nf = tempfile.TemporaryFile() nf = os.dup(nf.fileno()) # get rid of CLOEXEC st = subprocess.call(['/usr/bin/applydeltarpm', '-a', p.arch, "/dev/fd/%d" % f.fileno(), "/dev/fd/%d" % nf]) + if st: + os.close(nf) + continue os.lseek(nf, 0, os.SEEK_SET) newpkgsfp[p.id] = solv.xfopen_fd("", nf) os.close(nf) |