http://www.perlmonks.org?node_id=1076597


in reply to Re^5: Cannot work on second file after reading first file.
in thread Cannot work on second file after reading first file.

In my testing, $csv->eof did not return true even after trying a second get_line (According to the documentation is does not return true until after an attempt to read past the EOF.)

In any event the cause was a change in global state in open_po: $/ was being set to undef. See Re: Cannot work on second file after reading first file.

Replies are listed 'Best First'.
Re^7: Cannot work on second file after reading first file.
by davido (Cardinal) on Feb 28, 2014 at 19:32 UTC

    Good work.


    Dave