summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive/http.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-11-10 12:43:01 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-11-10 12:43:01 +0000
commitea4e9bc9cd5d7b7f97d19b8c27337c95c026bb73 (patch)
treef2ab28cebd841047ab633aecd2d39e49395dda43 /perl-install/interactive/http.pm
parenta7d95e8e64458c3676a3bffafcc57833e74b876b (diff)
downloaddrakx-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/http.pm')
-rw-r--r--perl-install/interactive/http.pm2
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;