From ea4e9bc9cd5d7b7f97d19b8c27337c95c026bb73 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Sun, 10 Nov 2002 12:43:01 +0000 Subject: don't return a typeglob ref, return the typeglob (reference to typeglobs are soft references which doesn't increment the ref count) --- perl-install/interactive/http.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.1