diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-10 12:43:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-10 12:43:01 +0000 |
commit | ea4e9bc9cd5d7b7f97d19b8c27337c95c026bb73 (patch) | |
tree | f2ab28cebd841047ab633aecd2d39e49395dda43 /perl-install/interactive | |
parent | a7d95e8e64458c3676a3bffafcc57833e74b876b (diff) | |
download | drakx-ea4e9bc9cd5d7b7f97d19b8c27337c95c026bb73.tar drakx-ea4e9bc9cd5d7b7f97d19b8c27337c95c026bb73.tar.gz drakx-ea4e9bc9cd5d7b7f97d19b8c27337c95c026bb73.tar.bz2 drakx-ea4e9bc9cd5d7b7f97d19b8c27337c95c026bb73.tar.xz drakx-ea4e9bc9cd5d7b7f97d19b8c27337c95c026bb73.zip |
don't return a typeglob ref, return the typeglob (reference to typeglobs are
soft references which doesn't increment the ref count)
Diffstat (limited to 'perl-install/interactive')
-rw-r--r-- | perl-install/interactive/http.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/http.pm b/perl-install/interactive/http.pm index 826a6da5c..b9e567371 100644 --- a/perl-install/interactive/http.pm +++ b/perl-install/interactive/http.pm @@ -111,7 +111,7 @@ sub ask_fromW { while (1) { local *F; open F, "<$pipe_r" or die; - $q = CGI->new(\*F); + $q = CGI->new(*F); $q->param('force_exit_dead_prog') and $o->exit; last if $q->param('uid') == $uid; |