Front page | perl.perl5.porters |
Postings from March 2012
[perl #112164] stat() warns about unopened filehandle on tied handles
Thread Previous
|
Thread Next
From:
David Golden
Date:
March 31, 2012 09:19
Subject:
[perl #112164] stat() warns about unopened filehandle on tied handles
Message ID:
rt-3.6.HEAD-4610-1333210750-105.112164-75-0@perl.org
# New Ticket Created by David Golden
# Please include the string: [perl #112164]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=112164 >
This is a bug report for perl from dagolden@cpan.org,
generated with the help of perlbug 1.39 running under perl 5.14.2.
-----------------------------------------------------------------
[Please describe your issue here]
Calling stat() on a tied handle warns, even if the tied handle has
a defined, non-negative fileno. Example:
$ perl -MTie::StdHandle -wE 'tie *FOO, 'Tie::StdHandle', "/etc/services"; print scalar readline *FOO; say fileno *FOO; stat(*FOO)'
# Network services, Internet style
3
stat() on unopened filehandle FOO at -e line 1, <HANDLE> line 1.
The bug is still in blead.
The same warning used to occur for scalar filehandles, but it
was fixed in the 5.15 development series.
[Please do not change anything below this line]
-----------------------------------------------------------------
---
Flags:
category=core
severity=medium
---
Site configuration information for perl 5.14.2:
Configured by david at Thu Jan 5 16:18:53 EST 2012.
Summary of my perl5 (revision 5 version 14 subversion 2) configuration:
Platform:
osname=linux, osvers=3.0.0-14-generic, archname=x86_64-linux
uname='linux vulcan 3.0.0-14-generic #23-ubuntu smp mon nov 21 20:28:43 utc 2011 x86_64 x86_64 x86_64 gnulinux '
config_args='-de -Dprefix=/home/david/perl5/perlbrew/perls/perl-5.14.2'
hint=recommended, useposix=true, d_sigaction=define
useithreads=undef, usemultiplicity=undef
useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
use64bitint=define, use64bitall=define, uselongdouble=undef
usemymalloc=n, bincompat5005=undef
Compiler:
cc='cc', ccflags ='-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
optimize='-O2',
cppflags='-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include'
ccversion='', gccversion='4.6.1', gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
alignbytes=8, prototype=define
Linker and Libraries:
ld='cc', ldflags =' -fstack-protector -L/usr/local/lib'
libpth=/usr/local/lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib /usr/lib
libs=-lnsl -ldb -ldl -lm -lcrypt -lutil -lc
perllibs=-lnsl -ldl -lm -lcrypt -lutil -lc
libc=, so=so, useshrplib=false, libperl=libperl.a
gnulibc_version='2.13'
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E'
cccdlflags='-fPIC', lddlflags='-shared -O2 -L/usr/local/lib -fstack-protector'
Locally applied patches:
---
@INC for perl 5.14.2:
/home/david/perl5/perlbrew/perls/perl-5.14.2/lib/site_perl/5.14.2/x86_64-linux
/home/david/perl5/perlbrew/perls/perl-5.14.2/lib/site_perl/5.14.2
/home/david/perl5/perlbrew/perls/perl-5.14.2/lib/5.14.2/x86_64-linux
/home/david/perl5/perlbrew/perls/perl-5.14.2/lib/5.14.2
.
---
Environment for perl 5.14.2:
HOME=/home/david
LANG=en_US.UTF-8
LANGUAGE (unset)
LC_COLLATE=C
LC_CTYPE=en_US.UTF-8
LC_MESSAGES=en_US.UTF-8
LD_LIBRARY_PATH (unset)
LOGDIR (unset)
PATH=/home/david/perl5/perlbrew/bin:/home/david/perl5/perlbrew/perls/perl-5.14.2/bin:~/bin:~/git/utility-scripts:/opt/perl/current/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:.
PERLBREW_BASHRC_VERSION=0.39
PERLBREW_HOME=/home/david/.perlbrew
PERLBREW_MANPATH=/home/david/perl5/perlbrew/perls/perl-5.14.2/man
PERLBREW_PATH=/home/david/perl5/perlbrew/bin:/home/david/perl5/perlbrew/perls/perl-5.14.2/bin
PERLBREW_PERL=perl-5.14.2
PERLBREW_ROOT=/home/david/perl5/perlbrew
PERLBREW_VERSION=0.39
PERL_BADLANG (unset)
PERL_EXTUTILS_AUTOINSTALL=--defaultdeps
SHELL=/bin/bash
Thread Previous
|
Thread Next