diff -u system-config-printer-1.3.6+20110831/debian/changelog system-config-printer-1.3.6+20110831/debian/changelog --- system-config-printer-1.3.6+20110831/debian/changelog +++ system-config-printer-1.3.6+20110831/debian/changelog @@ -1,3 +1,10 @@ +system-config-printer (1.3.6+20110831-0ubuntu9.3) oneiric-proposed; urgency=low + + * debian/patches/73_fix_file_descriptor_leak_in_ppdcache.patch: Fixed + file descriptor leak in PPD cache (LP: #874445). + + -- Till Kamppeter Fri, 21 Oct 2011 16:06:24 +0200 + system-config-printer (1.3.6+20110831-0ubuntu9.2) oneiric-proposed; urgency=low * debian/patches/70_use-hpcups-instead-of-ps-with-hp-laserjet-12xx-13xx.patch: only in patch2: unchanged: --- system-config-printer-1.3.6+20110831.orig/debian/patches/73_fix_file_descriptor_leak_in_ppdcache.patch +++ system-config-printer-1.3.6+20110831/debian/patches/73_fix_file_descriptor_leak_in_ppdcache.patch @@ -0,0 +1,11 @@ +diff -Nur -x '*.orig' -x '*~' system-config-printer-1.3.6+20110831//ppdcache.py system-config-printer-1.3.6+20110831.new//ppdcache.py +--- system-config-printer-1.3.6+20110831//ppdcache.py 2011-08-31 14:35:02.000000000 +0200 ++++ system-config-printer-1.3.6+20110831.new//ppdcache.py 2011-10-21 16:00:10.960808208 +0200 +@@ -95,6 +95,7 @@ + tmpf = file (tmpfname, "w") + tmpf.writelines (f.readlines ()) + del tmpf ++ os.close (tmpfd) + try: + ppd = cups.PPD (tmpfname) + os.unlink (tmpfname)