Hello all

Please take a look at the bug report at
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=90447&repeatmerged=yes
it describes  memory leak in the following program that is written according to the
manual pages. I forwarded it once to the mailing list but can't remember getting
an answer and the bug is still in the latest version:

bye,

 -christian-

        #! /usr/bin/perl -w
        use strict;

        use DBI;

        my $dbh = DBI->connect('DBI:CSV:f_dir=/tmp', undef, undef, {RaiseError => 1});

        sub flub() {
                local $dbh->{RaiseError};
                # This construct is recommended by DBI(3pm)
        }

        while (1) { flub(); };

Reply via email to