diff options
-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; } |