On Tue, Jul 10, 2001 at 07:18:22AM -0400, Blader Robert G DLVA wrote:
> open ( FWLOG, "./logfile.010626");
> 
> while ( $LINE = <FWLOG> ) {
> 
>         chomp ($LINE);
>         @fw_log = split (/;/, $LINE);
> 
> } 

If this is the only code you're using that has the problem you describe, and
you didn't make a typo when sending it to us, then the only explanation is
that $LINE -is- large.

Print out a single line with:

    open(...)
    print scalar <FWLOG>;

How big is it?


> Is new memory allocated for each instance of $LINE or for @fw_log?

No.


Michael
--
Administrator                      www.shoebox.net
Programmer, System Administrator   www.gallanttech.com
--

Reply via email to