diff options
author | Francois Pons <fpons@mandriva.com> | 2000-11-14 15:31:59 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-11-14 15:31:59 +0000 |
commit | 949a885497d3d05e4dc0dc20e52ecb758d9b677c (patch) | |
tree | 0e7a20d9c3694bc4c392ea420607b7cbacdf3814 /perl-install/lang.pm | |
parent | 01975efac2cb7e05fbe05ec3733ae904669a1e94 (diff) | |
download | drakx-949a885497d3d05e4dc0dc20e52ecb758d9b677c.tar drakx-949a885497d3d05e4dc0dc20e52ecb758d9b677c.tar.gz drakx-949a885497d3d05e4dc0dc20e52ecb758d9b677c.tar.bz2 drakx-949a885497d3d05e4dc0dc20e52ecb758d9b677c.tar.xz drakx-949a885497d3d05e4dc0dc20e52ecb758d9b677c.zip |
removed foreach (<... which are eating memory
Diffstat (limited to 'perl-install/lang.pm')
-rw-r--r-- | perl-install/lang.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm index 79da314fe..78c8b954e 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -367,7 +367,8 @@ sub load_po($) { } else { open F, $f; #- not returning here help avoiding reading the same multiple times. } - foreach (<F>) { + local $_; + while (<F>) { /^msgstr/ and $state = 1; /^msgid/ && !$fuzzy and $state = 2; s/@/\\@/g; |