From c4490a3492a8e4afd8e48090ff117331d011ba87 Mon Sep 17 00:00:00 2001 From: Michael Schroeder Date: Mon, 17 Jun 2013 14:34:01 +0200 Subject: [PATCH] pysolv: check applydeltarpm exit status --- examples/pysolv | 3 +++ 1 file changed, 3 insertions(+) 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) -- 2.7.4