summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-01-02 13:13:16 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-01-02 13:13:16 +0100
commit67490ab7b2e7ce850af3c27d82b4ba014c1b5e90 (patch)
tree0a73c496f7c3876f989e78eadd608295626efd6d
parent1e91e9fa93155079969d9fddcda1654462b8f8e2 (diff)
downloadbugzilla-67490ab7b2e7ce850af3c27d82b4ba014c1b5e90.tar.gz
bugzilla-67490ab7b2e7ce850af3c27d82b4ba014c1b5e90.tar.xz
Bug 825431: List::MoreUtils older than 0.27_04 leaks memory when using part()
r=glob a=LpSolit
-rw-r--r--Bugzilla/Install/Requirements.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index efe444913..9bc5be14a 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -147,10 +147,11 @@ sub REQUIRED_MODULES {
# in a URL query string.
version => '1.37',
},
+ # 0.32 fixes several memory leaks in the XS version of some functions.
{
package => 'List-MoreUtils',
module => 'List::MoreUtils',
- version => 0.22,
+ version => 0.32,
},
{
package => 'Math-Random-ISAAC',