diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-01-02 13:13:16 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-01-02 13:13:16 +0100 |
commit | 67490ab7b2e7ce850af3c27d82b4ba014c1b5e90 (patch) | |
tree | 0a73c496f7c3876f989e78eadd608295626efd6d /Bugzilla | |
parent | 1e91e9fa93155079969d9fddcda1654462b8f8e2 (diff) | |
download | bugzilla-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
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 3 |
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', |