Skip Menu |

This queue is for tickets about the OpenOffice-OODoc CPAN distribution.

Report information
The Basics
Id: 101712
Status: open
Priority: 0/
Queue: OpenOffice-OODoc

People
Owner: Nobody in particular
Requestors: ivocarv [...] gmail.com
Cc:
AdminCc:

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



Subject: reading odf documents in a loop exausts all memory
Date: Fri, 23 Jan 2015 18:50:53 -0200
To: bug-OpenOffice-OODoc [...] rt.cpan.org
From: Ivo de Carvalho Peixinho <ivocarv [...] gmail.com>
perl v5.14.2 OpenOffice-OODoc-2.125 Linux debian-ncmec 3.2.0-4-amd64 #1 SMP Debian 3.2.65-1 x86_64 GNU/Linux reading several odf files in a loop reusing the same variable exausts all memory. Setting variable to "" produces no effect. example: #!/usr/bin/perl use OpenOffice::OODoc; $filename="teste.odt"; while (1) { my $document=odfDocument(file => $filename); } Ivo.
From: info [...] tokon.net
Bad news. It happens even without a variable: while (1) { odfDocument(file => $filename); } (Perl 5.18.2 on Ubuntu 12.04 + Perlbrew) The question is: Is this module still maintained?