diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-03-04 11:26:19 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-03-04 11:26:19 +0000 |
commit | 09b69c96288ac6b0d4207e60af894be866235d62 (patch) | |
tree | 722656645f93cf484fb3b8e48b63586c7ab27c2c | |
parent | 7e688f535996b081fb546b336708d30227a1664c (diff) | |
download | urpmi-09b69c96288ac6b0d4207e60af894be866235d62.tar urpmi-09b69c96288ac6b0d4207e60af894be866235d62.tar.gz urpmi-09b69c96288ac6b0d4207e60af894be866235d62.tar.bz2 urpmi-09b69c96288ac6b0d4207e60af894be866235d62.tar.xz urpmi-09b69c96288ac6b0d4207e60af894be866235d62.zip |
(install) close another fd leak (needed for drakx)
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | urpm/install.pm | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,5 @@ +- close another fd leak (needed for drakx) + Version 6.22.1 - 4 March 2009 - explicitely close the RPM DB on comleting transaction (needed for drakx) diff --git a/urpm/install.pm b/urpm/install.pm index 035fb924..7d385965 100644 --- a/urpm/install.pm +++ b/urpm/install.pm @@ -287,6 +287,7 @@ sub install { # explicitely close the RPM DB (needed for drakx -- looks like refcount has hard work): undef $db; + undef $trans; @errors; } |