Skip Menu |

This queue is for tickets about the Algorithm-FastPermute CPAN distribution.

Report information
The Basics
Id: 108635
Status: new
Priority: 0/
Queue: Algorithm-FastPermute

People
Owner: Nobody in particular
Requestors: justincase [...] yopmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: memory leak
The following script leaks memory: #!/usr/bin/env perl use strict; use warnings; use Algorithm::FastPermute qw(permute); my @array = (0..50); permute { my $str = join '', @array; # This also leaks: # my $str = 'a'x100; } @array;